freddyaboulton HF staff commited on
Commit
77d3dba
1 Parent(s): 662f7e3

Commit 2: Add 50 file(s)

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +1 -0
  2. demos/file_explorer_component_events/dir3/dir4/dir_4_foo.txt +0 -0
  3. demos/file_explorer_component_events/run.ipynb +1 -0
  4. demos/file_explorer_component_events/run.py +36 -0
  5. demos/image_editor_events/run.ipynb +1 -0
  6. demos/image_editor_events/run.py +60 -0
  7. demos/image_mod_default_image/images/cheetah1.jpg +0 -0
  8. demos/image_mod_default_image/images/lion.jpg +0 -0
  9. demos/image_mod_default_image/images/logo.png +0 -0
  10. demos/image_mod_default_image/run.ipynb +1 -0
  11. demos/image_mod_default_image/run.py +16 -0
  12. demos/image_segmentation/DESCRIPTION.md +1 -0
  13. demos/image_segmentation/requirements.txt +1 -0
  14. demos/image_segmentation/run.ipynb +1 -0
  15. demos/image_segmentation/run.py +61 -0
  16. demos/interface_random_slider/run.ipynb +1 -0
  17. demos/interface_random_slider/run.py +20 -0
  18. demos/kitchen_sink/files/cantina.wav +0 -0
  19. demos/kitchen_sink/files/cheetah1.jpg +0 -0
  20. demos/kitchen_sink/files/lion.jpg +0 -0
  21. demos/kitchen_sink/files/logo.png +0 -0
  22. demos/kitchen_sink/files/time.csv +8 -0
  23. demos/kitchen_sink/files/titanic.csv +892 -0
  24. demos/kitchen_sink/files/tower.jpg +0 -0
  25. demos/kitchen_sink/files/world.mp4 +3 -0
  26. demos/kitchen_sink/requirements.txt +1 -0
  27. demos/kitchen_sink/run.ipynb +1 -0
  28. demos/kitchen_sink/run.py +159 -0
  29. demos/kitchen_sink_random/__init__.py +0 -0
  30. demos/kitchen_sink_random/constants.py +65 -0
  31. demos/kitchen_sink_random/files/cheetah1.jpeg +0 -0
  32. demos/kitchen_sink_random/files/cheetah1.jpg +0 -0
  33. demos/kitchen_sink_random/files/lion.jpg +0 -0
  34. demos/kitchen_sink_random/requirements.txt +2 -0
  35. demos/kitchen_sink_random/run.py +97 -0
  36. demos/matrix_transpose/run.ipynb +1 -0
  37. demos/matrix_transpose/run.py +23 -0
  38. demos/matrix_transpose/screenshot.png +0 -0
  39. demos/mini_leaderboard/assets/__init__.py +0 -0
  40. demos/mini_leaderboard/assets/custom_css.css +87 -0
  41. demos/mini_leaderboard/assets/leaderboard_data.json +0 -0
  42. demos/mini_leaderboard/requirements.txt +1 -0
  43. demos/mini_leaderboard/run.ipynb +1 -0
  44. demos/mini_leaderboard/run.py +236 -0
  45. demos/model3D/files/Bunny.obj +0 -0
  46. demos/model3D/files/Duck.glb +0 -0
  47. demos/model3D/files/Fox.gltf +0 -0
  48. demos/model3D/files/face.obj +2471 -0
  49. demos/model3D/files/sofia.stl +0 -0
  50. demos/model3D/files/source.txt +13 -0
.gitattributes CHANGED
@@ -34,3 +34,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  demos/calculator/screenshot.gif filter=lfs diff=lfs merge=lfs -text
 
 
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  demos/calculator/screenshot.gif filter=lfs diff=lfs merge=lfs -text
37
+ demos/kitchen_sink/files/world.mp4 filter=lfs diff=lfs merge=lfs -text
demos/file_explorer_component_events/dir3/dir4/dir_4_foo.txt ADDED
File without changes
demos/file_explorer_component_events/run.ipynb ADDED
@@ -0,0 +1 @@
 
 
1
+ {"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: file_explorer_component_events"]}, {"cell_type": "code", "execution_count": null, "id": "272996653310673477252411125948039410165", "metadata": {}, "outputs": [], "source": ["!pip install -q gradio "]}, {"cell_type": "code", "execution_count": null, "id": "288918539441861185822528903084949547379", "metadata": {}, "outputs": [], "source": ["# Downloading files from the demo repo\n", "import os\n", "os.mkdir('dir1')\n", "!wget -q -O dir1/bar.txt https://github.com/gradio-app/gradio/raw/main/demo/file_explorer_component_events/dir1/bar.txt\n", "!wget -q -O dir1/foo.txt https://github.com/gradio-app/gradio/raw/main/demo/file_explorer_component_events/dir1/foo.txt\n", "os.mkdir('dir2')\n", "!wget -q -O dir2/baz.png https://github.com/gradio-app/gradio/raw/main/demo/file_explorer_component_events/dir2/baz.png\n", "!wget -q -O dir2/foo.png https://github.com/gradio-app/gradio/raw/main/demo/file_explorer_component_events/dir2/foo.png\n", "os.mkdir('dir3')\n", "!wget -q -O dir3/dir3_bar.log https://github.com/gradio-app/gradio/raw/main/demo/file_explorer_component_events/dir3/dir3_bar.log\n", "!wget -q -O dir3/dir3_foo.txt https://github.com/gradio-app/gradio/raw/main/demo/file_explorer_component_events/dir3/dir3_foo.txt\n", "!wget -q -O dir3/dir4 https://github.com/gradio-app/gradio/raw/main/demo/file_explorer_component_events/dir3/dir4"]}, {"cell_type": "code", "execution_count": null, "id": "44380577570523278879349135829904343037", "metadata": {}, "outputs": [], "source": ["import gradio as gr\n", "from pathlib import Path\n", "\n", "base_root = Path(__file__).parent.resolve()\n", "\n", "with gr.Blocks() as demo:\n", " with gr.Row():\n", " dd = gr.Dropdown(label=\"Select File Explorer Root\",\n", " value=str(base_root / \"dir1\"),\n", " choices=[str(base_root / \"dir1\"), str(base_root / \"dir2\"),\n", " str(base_root / \"dir3\")])\n", " with gr.Group():\n", " txt_only_glob = gr.Checkbox(label=\"Show only text files\", value=False)\n", " ignore_txt_in_glob = gr.Checkbox(label=\"Ignore text files in glob\", value=False)\n", "\n", " fe = gr.FileExplorer(root_dir=str(base_root / \"dir1\"),\n", " glob=\"**/*\", interactive=True)\n", " textbox = gr.Textbox(label=\"Selected Directory\")\n", " run = gr.Button(\"Run\")\n", " total_changes = gr.Number(0, elem_id=\"total-changes\")\n", "\n", " txt_only_glob.select(lambda s: gr.FileExplorer(glob=\"*.txt\" if s else \"*\") ,\n", " inputs=[txt_only_glob], outputs=[fe])\n", " ignore_txt_in_glob.select(lambda s: gr.FileExplorer(ignore_glob=\"*.txt\" if s else None),\n", " inputs=[ignore_txt_in_glob], outputs=[fe])\n", "\n", " dd.select(lambda s: gr.FileExplorer(root_dir=s), inputs=[dd], outputs=[fe])\n", " run.click(lambda s: \",\".join(s) if isinstance(s, list) else s, inputs=[fe], outputs=[textbox])\n", " fe.change(lambda num: num + 1, inputs=total_changes, outputs=total_changes)\n", "\n", " with gr.Row():\n", " a = gr.Textbox(elem_id=\"input-box\")\n", " a.change(lambda x: x, inputs=[a])\n", "\n", "if __name__ == \"__main__\":\n", " demo.launch()\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
demos/file_explorer_component_events/run.py ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from pathlib import Path
3
+
4
+ base_root = Path(__file__).parent.resolve()
5
+
6
+ with gr.Blocks() as demo:
7
+ with gr.Row():
8
+ dd = gr.Dropdown(label="Select File Explorer Root",
9
+ value=str(base_root / "dir1"),
10
+ choices=[str(base_root / "dir1"), str(base_root / "dir2"),
11
+ str(base_root / "dir3")])
12
+ with gr.Group():
13
+ txt_only_glob = gr.Checkbox(label="Show only text files", value=False)
14
+ ignore_txt_in_glob = gr.Checkbox(label="Ignore text files in glob", value=False)
15
+
16
+ fe = gr.FileExplorer(root_dir=str(base_root / "dir1"),
17
+ glob="**/*", interactive=True)
18
+ textbox = gr.Textbox(label="Selected Directory")
19
+ run = gr.Button("Run")
20
+ total_changes = gr.Number(0, elem_id="total-changes")
21
+
22
+ txt_only_glob.select(lambda s: gr.FileExplorer(glob="*.txt" if s else "*") ,
23
+ inputs=[txt_only_glob], outputs=[fe])
24
+ ignore_txt_in_glob.select(lambda s: gr.FileExplorer(ignore_glob="*.txt" if s else None),
25
+ inputs=[ignore_txt_in_glob], outputs=[fe])
26
+
27
+ dd.select(lambda s: gr.FileExplorer(root_dir=s), inputs=[dd], outputs=[fe])
28
+ run.click(lambda s: ",".join(s) if isinstance(s, list) else s, inputs=[fe], outputs=[textbox])
29
+ fe.change(lambda num: num + 1, inputs=total_changes, outputs=total_changes)
30
+
31
+ with gr.Row():
32
+ a = gr.Textbox(elem_id="input-box")
33
+ a.change(lambda x: x, inputs=[a])
34
+
35
+ if __name__ == "__main__":
36
+ demo.launch()
demos/image_editor_events/run.ipynb ADDED
@@ -0,0 +1 @@
 
 
1
+ {"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: image_editor_events"]}, {"cell_type": "code", "execution_count": null, "id": "272996653310673477252411125948039410165", "metadata": {}, "outputs": [], "source": ["!pip install -q gradio "]}, {"cell_type": "code", "execution_count": null, "id": "288918539441861185822528903084949547379", "metadata": {}, "outputs": [], "source": ["import gradio as gr\n", "\n", "def predict(im):\n", " return im[\"composite\"]\n", "\n", "with gr.Blocks() as demo:\n", " with gr.Group():\n", " with gr.Row():\n", " im = gr.ImageEditor(\n", " type=\"numpy\",\n", " crop_size=\"1:1\",\n", " elem_id=\"image_editor\",\n", " )\n", " im_preview = gr.Image()\n", " with gr.Group():\n", " with gr.Row():\n", "\n", " n_upload = gr.Label(\n", " 0,\n", " label=\"upload\",\n", " elem_id=\"upload\",\n", " )\n", " n_change = gr.Label(\n", " 0,\n", " label=\"change\",\n", " elem_id=\"change\",\n", " )\n", " n_input = gr.Label(\n", " 0,\n", " label=\"input\",\n", " elem_id=\"input\",\n", " )\n", " n_apply = gr.Label(\n", " 0,\n", " label=\"apply\",\n", " elem_id=\"apply\",\n", " )\n", " clear_btn = gr.Button(\"Clear\", elem_id=\"clear\")\n", "\n", " im.upload(\n", " lambda x: int(x) + 1, outputs=n_upload, inputs=n_upload, show_progress=\"hidden\"\n", " )\n", " im.change(\n", " lambda x: int(x) + 1, outputs=n_change, inputs=n_change, show_progress=\"hidden\"\n", " )\n", " im.input(\n", " lambda x: int(x) + 1, outputs=n_input, inputs=n_input, show_progress=\"hidden\"\n", " )\n", " im.apply(\n", " lambda x: int(x) + 1, outputs=n_apply, inputs=n_apply, show_progress=\"hidden\"\n", " )\n", " im.change(predict, outputs=im_preview, inputs=im, show_progress=\"hidden\")\n", " clear_btn.click(\n", " lambda: None,\n", " None,\n", " im,\n", " )\n", "\n", "if __name__ == \"__main__\":\n", " demo.launch()\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
demos/image_editor_events/run.py ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def predict(im):
4
+ return im["composite"]
5
+
6
+ with gr.Blocks() as demo:
7
+ with gr.Group():
8
+ with gr.Row():
9
+ im = gr.ImageEditor(
10
+ type="numpy",
11
+ crop_size="1:1",
12
+ elem_id="image_editor",
13
+ )
14
+ im_preview = gr.Image()
15
+ with gr.Group():
16
+ with gr.Row():
17
+
18
+ n_upload = gr.Label(
19
+ 0,
20
+ label="upload",
21
+ elem_id="upload",
22
+ )
23
+ n_change = gr.Label(
24
+ 0,
25
+ label="change",
26
+ elem_id="change",
27
+ )
28
+ n_input = gr.Label(
29
+ 0,
30
+ label="input",
31
+ elem_id="input",
32
+ )
33
+ n_apply = gr.Label(
34
+ 0,
35
+ label="apply",
36
+ elem_id="apply",
37
+ )
38
+ clear_btn = gr.Button("Clear", elem_id="clear")
39
+
40
+ im.upload(
41
+ lambda x: int(x) + 1, outputs=n_upload, inputs=n_upload, show_progress="hidden"
42
+ )
43
+ im.change(
44
+ lambda x: int(x) + 1, outputs=n_change, inputs=n_change, show_progress="hidden"
45
+ )
46
+ im.input(
47
+ lambda x: int(x) + 1, outputs=n_input, inputs=n_input, show_progress="hidden"
48
+ )
49
+ im.apply(
50
+ lambda x: int(x) + 1, outputs=n_apply, inputs=n_apply, show_progress="hidden"
51
+ )
52
+ im.change(predict, outputs=im_preview, inputs=im, show_progress="hidden")
53
+ clear_btn.click(
54
+ lambda: None,
55
+ None,
56
+ im,
57
+ )
58
+
59
+ if __name__ == "__main__":
60
+ demo.launch()
demos/image_mod_default_image/images/cheetah1.jpg ADDED
demos/image_mod_default_image/images/lion.jpg ADDED
demos/image_mod_default_image/images/logo.png ADDED
demos/image_mod_default_image/run.ipynb ADDED
@@ -0,0 +1 @@
 
 
1
+ {"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: image_mod_default_image"]}, {"cell_type": "code", "execution_count": null, "id": "272996653310673477252411125948039410165", "metadata": {}, "outputs": [], "source": ["!pip install -q gradio "]}, {"cell_type": "code", "execution_count": null, "id": "288918539441861185822528903084949547379", "metadata": {}, "outputs": [], "source": ["# Downloading files from the demo repo\n", "import os\n", "os.mkdir('images')\n", "!wget -q -O images/cheetah1.jpg https://github.com/gradio-app/gradio/raw/main/demo/image_mod_default_image/images/cheetah1.jpg\n", "!wget -q -O images/lion.jpg https://github.com/gradio-app/gradio/raw/main/demo/image_mod_default_image/images/lion.jpg\n", "!wget -q -O images/logo.png https://github.com/gradio-app/gradio/raw/main/demo/image_mod_default_image/images/logo.png"]}, {"cell_type": "code", "execution_count": null, "id": "44380577570523278879349135829904343037", "metadata": {}, "outputs": [], "source": ["import gradio as gr\n", "import os\n", "\n", "def image_mod(image):\n", " return image.rotate(45)\n", "\n", "cheetah = os.path.join(os.path.abspath(''), \"images/cheetah1.jpg\")\n", "\n", "demo = gr.Interface(image_mod, gr.Image(type=\"pil\", value=cheetah), \"image\",\n", " flagging_options=[\"blurry\", \"incorrect\", \"other\"], examples=[\n", " os.path.join(os.path.abspath(''), \"images/lion.jpg\"),\n", " os.path.join(os.path.abspath(''), \"images/logo.png\")\n", " ])\n", "\n", "if __name__ == \"__main__\":\n", " demo.launch(max_file_size=\"70kb\")\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
demos/image_mod_default_image/run.py ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import os
3
+
4
+ def image_mod(image):
5
+ return image.rotate(45)
6
+
7
+ cheetah = os.path.join(os.path.dirname(__file__), "images/cheetah1.jpg")
8
+
9
+ demo = gr.Interface(image_mod, gr.Image(type="pil", value=cheetah), "image",
10
+ flagging_options=["blurry", "incorrect", "other"], examples=[
11
+ os.path.join(os.path.dirname(__file__), "images/lion.jpg"),
12
+ os.path.join(os.path.dirname(__file__), "images/logo.png")
13
+ ])
14
+
15
+ if __name__ == "__main__":
16
+ demo.launch(max_file_size="70kb")
demos/image_segmentation/DESCRIPTION.md ADDED
@@ -0,0 +1 @@
 
 
1
+ Simple image segmentation using gradio's AnnotatedImage component.
demos/image_segmentation/requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ numpy
demos/image_segmentation/run.ipynb ADDED
@@ -0,0 +1 @@
 
 
1
+ {"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: image_segmentation\n", "### Simple image segmentation using gradio's AnnotatedImage component.\n", " "]}, {"cell_type": "code", "execution_count": null, "id": "272996653310673477252411125948039410165", "metadata": {}, "outputs": [], "source": ["!pip install -q gradio numpy "]}, {"cell_type": "code", "execution_count": null, "id": "288918539441861185822528903084949547379", "metadata": {}, "outputs": [], "source": ["import gradio as gr\n", "import numpy as np\n", "import random\n", "\n", "with gr.Blocks() as demo:\n", " section_labels = [\n", " \"apple\",\n", " \"banana\",\n", " \"carrot\",\n", " \"donut\",\n", " \"eggplant\",\n", " \"fish\",\n", " \"grapes\",\n", " \"hamburger\",\n", " \"ice cream\",\n", " \"juice\",\n", " ]\n", "\n", " with gr.Row():\n", " num_boxes = gr.Slider(0, 5, 2, step=1, label=\"Number of boxes\")\n", " num_segments = gr.Slider(0, 5, 1, step=1, label=\"Number of segments\")\n", "\n", " with gr.Row():\n", " img_input = gr.Image()\n", " img_output = gr.AnnotatedImage(\n", " color_map={\"banana\": \"#a89a00\", \"carrot\": \"#ffae00\"}\n", " )\n", "\n", " section_btn = gr.Button(\"Identify Sections\")\n", " selected_section = gr.Textbox(label=\"Selected Section\")\n", "\n", " def section(img, num_boxes, num_segments):\n", " sections = []\n", " for a in range(num_boxes):\n", " x = random.randint(0, img.shape[1])\n", " y = random.randint(0, img.shape[0])\n", " w = random.randint(0, img.shape[1] - x)\n", " h = random.randint(0, img.shape[0] - y)\n", " sections.append(((x, y, x + w, y + h), section_labels[a]))\n", " for b in range(num_segments):\n", " x = random.randint(0, img.shape[1])\n", " y = random.randint(0, img.shape[0])\n", " r = random.randint(0, min(x, y, img.shape[1] - x, img.shape[0] - y))\n", " mask = np.zeros(img.shape[:2])\n", " for i in range(img.shape[0]):\n", " for j in range(img.shape[1]):\n", " dist_square = (i - y) ** 2 + (j - x) ** 2\n", " if dist_square < r**2:\n", " mask[i, j] = round((r**2 - dist_square) / r**2 * 4) / 4\n", " sections.append((mask, section_labels[b + num_boxes]))\n", " return (img, sections)\n", "\n", " section_btn.click(section, [img_input, num_boxes, num_segments], img_output)\n", "\n", " def select_section(evt: gr.SelectData):\n", " return section_labels[evt.index]\n", "\n", " img_output.select(select_section, None, selected_section)\n", "\n", "if __name__ == \"__main__\":\n", " demo.launch()\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
demos/image_segmentation/run.py ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import numpy as np
3
+ import random
4
+
5
+ with gr.Blocks() as demo:
6
+ section_labels = [
7
+ "apple",
8
+ "banana",
9
+ "carrot",
10
+ "donut",
11
+ "eggplant",
12
+ "fish",
13
+ "grapes",
14
+ "hamburger",
15
+ "ice cream",
16
+ "juice",
17
+ ]
18
+
19
+ with gr.Row():
20
+ num_boxes = gr.Slider(0, 5, 2, step=1, label="Number of boxes")
21
+ num_segments = gr.Slider(0, 5, 1, step=1, label="Number of segments")
22
+
23
+ with gr.Row():
24
+ img_input = gr.Image()
25
+ img_output = gr.AnnotatedImage(
26
+ color_map={"banana": "#a89a00", "carrot": "#ffae00"}
27
+ )
28
+
29
+ section_btn = gr.Button("Identify Sections")
30
+ selected_section = gr.Textbox(label="Selected Section")
31
+
32
+ def section(img, num_boxes, num_segments):
33
+ sections = []
34
+ for a in range(num_boxes):
35
+ x = random.randint(0, img.shape[1])
36
+ y = random.randint(0, img.shape[0])
37
+ w = random.randint(0, img.shape[1] - x)
38
+ h = random.randint(0, img.shape[0] - y)
39
+ sections.append(((x, y, x + w, y + h), section_labels[a]))
40
+ for b in range(num_segments):
41
+ x = random.randint(0, img.shape[1])
42
+ y = random.randint(0, img.shape[0])
43
+ r = random.randint(0, min(x, y, img.shape[1] - x, img.shape[0] - y))
44
+ mask = np.zeros(img.shape[:2])
45
+ for i in range(img.shape[0]):
46
+ for j in range(img.shape[1]):
47
+ dist_square = (i - y) ** 2 + (j - x) ** 2
48
+ if dist_square < r**2:
49
+ mask[i, j] = round((r**2 - dist_square) / r**2 * 4) / 4
50
+ sections.append((mask, section_labels[b + num_boxes]))
51
+ return (img, sections)
52
+
53
+ section_btn.click(section, [img_input, num_boxes, num_segments], img_output)
54
+
55
+ def select_section(evt: gr.SelectData):
56
+ return section_labels[evt.index]
57
+
58
+ img_output.select(select_section, None, selected_section)
59
+
60
+ if __name__ == "__main__":
61
+ demo.launch()
demos/interface_random_slider/run.ipynb ADDED
@@ -0,0 +1 @@
 
 
1
+ {"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: interface_random_slider"]}, {"cell_type": "code", "execution_count": null, "id": "272996653310673477252411125948039410165", "metadata": {}, "outputs": [], "source": ["!pip install -q gradio "]}, {"cell_type": "code", "execution_count": null, "id": "288918539441861185822528903084949547379", "metadata": {}, "outputs": [], "source": ["import gradio as gr\n", "\n", "def func(slider_1, slider_2, *args):\n", " return slider_1 + slider_2 * 5\n", "\n", "demo = gr.Interface(\n", " func,\n", " [\n", " gr.Slider(minimum=1.5, maximum=250000.89, randomize=True, label=\"Random Big Range\"),\n", " gr.Slider(minimum=-1, maximum=1, randomize=True, step=0.05, label=\"Random only multiple of 0.05 allowed\"),\n", " gr.Slider(minimum=0, maximum=1, randomize=True, step=0.25, label=\"Random only multiples of 0.25 allowed\"),\n", " gr.Slider(minimum=-100, maximum=100, randomize=True, step=3, label=\"Random between -100 and 100 step 3\"),\n", " gr.Slider(minimum=-100, maximum=100, randomize=True, label=\"Random between -100 and 100\"),\n", " gr.Slider(value=0.25, minimum=5, maximum=30, step=-1),\n", " ],\n", " \"number\",\n", ")\n", "\n", "if __name__ == \"__main__\":\n", " demo.launch()\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
demos/interface_random_slider/run.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def func(slider_1, slider_2, *args):
4
+ return slider_1 + slider_2 * 5
5
+
6
+ demo = gr.Interface(
7
+ func,
8
+ [
9
+ gr.Slider(minimum=1.5, maximum=250000.89, randomize=True, label="Random Big Range"),
10
+ gr.Slider(minimum=-1, maximum=1, randomize=True, step=0.05, label="Random only multiple of 0.05 allowed"),
11
+ gr.Slider(minimum=0, maximum=1, randomize=True, step=0.25, label="Random only multiples of 0.25 allowed"),
12
+ gr.Slider(minimum=-100, maximum=100, randomize=True, step=3, label="Random between -100 and 100 step 3"),
13
+ gr.Slider(minimum=-100, maximum=100, randomize=True, label="Random between -100 and 100"),
14
+ gr.Slider(value=0.25, minimum=5, maximum=30, step=-1),
15
+ ],
16
+ "number",
17
+ )
18
+
19
+ if __name__ == "__main__":
20
+ demo.launch()
demos/kitchen_sink/files/cantina.wav ADDED
Binary file (132 kB). View file
 
demos/kitchen_sink/files/cheetah1.jpg ADDED
demos/kitchen_sink/files/lion.jpg ADDED
demos/kitchen_sink/files/logo.png ADDED
demos/kitchen_sink/files/time.csv ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ time,value,price
2
+ 1,1,4
3
+ 2,3,8
4
+ 3,6,12
5
+ 4,10,16
6
+ 5,15,20
7
+ 6,21,24
8
+ 7,28,28
demos/kitchen_sink/files/titanic.csv ADDED
@@ -0,0 +1,892 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ PassengerId,Survived,Pclass,Name,Sex,Age,SibSp,Parch,Ticket,Fare,Cabin,Embarked
2
+ 1,0,3,"Braund, Mr. Owen Harris",male,22,1,0,A/5 21171,7.25,,S
3
+ 2,1,1,"Cumings, Mrs. John Bradley (Florence Briggs Thayer)",female,38,1,0,PC 17599,71.2833,C85,C
4
+ 3,1,3,"Heikkinen, Miss. Laina",female,26,0,0,STON/O2. 3101282,7.925,,S
5
+ 4,1,1,"Futrelle, Mrs. Jacques Heath (Lily May Peel)",female,35,1,0,113803,53.1,C123,S
6
+ 5,0,3,"Allen, Mr. William Henry",male,35,0,0,373450,8.05,,S
7
+ 6,0,3,"Moran, Mr. James",male,,0,0,330877,8.4583,,Q
8
+ 7,0,1,"McCarthy, Mr. Timothy J",male,54,0,0,17463,51.8625,E46,S
9
+ 8,0,3,"Palsson, Master. Gosta Leonard",male,2,3,1,349909,21.075,,S
10
+ 9,1,3,"Johnson, Mrs. Oscar W (Elisabeth Vilhelmina Berg)",female,27,0,2,347742,11.1333,,S
11
+ 10,1,2,"Nasser, Mrs. Nicholas (Adele Achem)",female,14,1,0,237736,30.0708,,C
12
+ 11,1,3,"Sandstrom, Miss. Marguerite Rut",female,4,1,1,PP 9549,16.7,G6,S
13
+ 12,1,1,"Bonnell, Miss. Elizabeth",female,58,0,0,113783,26.55,C103,S
14
+ 13,0,3,"Saundercock, Mr. William Henry",male,20,0,0,A/5. 2151,8.05,,S
15
+ 14,0,3,"Andersson, Mr. Anders Johan",male,39,1,5,347082,31.275,,S
16
+ 15,0,3,"Vestrom, Miss. Hulda Amanda Adolfina",female,14,0,0,350406,7.8542,,S
17
+ 16,1,2,"Hewlett, Mrs. (Mary D Kingcome) ",female,55,0,0,248706,16,,S
18
+ 17,0,3,"Rice, Master. Eugene",male,2,4,1,382652,29.125,,Q
19
+ 18,1,2,"Williams, Mr. Charles Eugene",male,,0,0,244373,13,,S
20
+ 19,0,3,"Vander Planke, Mrs. Julius (Emelia Maria Vandemoortele)",female,31,1,0,345763,18,,S
21
+ 20,1,3,"Masselmani, Mrs. Fatima",female,,0,0,2649,7.225,,C
22
+ 21,0,2,"Fynney, Mr. Joseph J",male,35,0,0,239865,26,,S
23
+ 22,1,2,"Beesley, Mr. Lawrence",male,34,0,0,248698,13,D56,S
24
+ 23,1,3,"McGowan, Miss. Anna ""Annie""",female,15,0,0,330923,8.0292,,Q
25
+ 24,1,1,"Sloper, Mr. William Thompson",male,28,0,0,113788,35.5,A6,S
26
+ 25,0,3,"Palsson, Miss. Torborg Danira",female,8,3,1,349909,21.075,,S
27
+ 26,1,3,"Asplund, Mrs. Carl Oscar (Selma Augusta Emilia Johansson)",female,38,1,5,347077,31.3875,,S
28
+ 27,0,3,"Emir, Mr. Farred Chehab",male,,0,0,2631,7.225,,C
29
+ 28,0,1,"Fortune, Mr. Charles Alexander",male,19,3,2,19950,263,C23 C25 C27,S
30
+ 29,1,3,"O'Dwyer, Miss. Ellen ""Nellie""",female,,0,0,330959,7.8792,,Q
31
+ 30,0,3,"Todoroff, Mr. Lalio",male,,0,0,349216,7.8958,,S
32
+ 31,0,1,"Uruchurtu, Don. Manuel E",male,40,0,0,PC 17601,27.7208,,C
33
+ 32,1,1,"Spencer, Mrs. William Augustus (Marie Eugenie)",female,,1,0,PC 17569,146.5208,B78,C
34
+ 33,1,3,"Glynn, Miss. Mary Agatha",female,,0,0,335677,7.75,,Q
35
+ 34,0,2,"Wheadon, Mr. Edward H",male,66,0,0,C.A. 24579,10.5,,S
36
+ 35,0,1,"Meyer, Mr. Edgar Joseph",male,28,1,0,PC 17604,82.1708,,C
37
+ 36,0,1,"Holverson, Mr. Alexander Oskar",male,42,1,0,113789,52,,S
38
+ 37,1,3,"Mamee, Mr. Hanna",male,,0,0,2677,7.2292,,C
39
+ 38,0,3,"Cann, Mr. Ernest Charles",male,21,0,0,A./5. 2152,8.05,,S
40
+ 39,0,3,"Vander Planke, Miss. Augusta Maria",female,18,2,0,345764,18,,S
41
+ 40,1,3,"Nicola-Yarred, Miss. Jamila",female,14,1,0,2651,11.2417,,C
42
+ 41,0,3,"Ahlin, Mrs. Johan (Johanna Persdotter Larsson)",female,40,1,0,7546,9.475,,S
43
+ 42,0,2,"Turpin, Mrs. William John Robert (Dorothy Ann Wonnacott)",female,27,1,0,11668,21,,S
44
+ 43,0,3,"Kraeff, Mr. Theodor",male,,0,0,349253,7.8958,,C
45
+ 44,1,2,"Laroche, Miss. Simonne Marie Anne Andree",female,3,1,2,SC/Paris 2123,41.5792,,C
46
+ 45,1,3,"Devaney, Miss. Margaret Delia",female,19,0,0,330958,7.8792,,Q
47
+ 46,0,3,"Rogers, Mr. William John",male,,0,0,S.C./A.4. 23567,8.05,,S
48
+ 47,0,3,"Lennon, Mr. Denis",male,,1,0,370371,15.5,,Q
49
+ 48,1,3,"O'Driscoll, Miss. Bridget",female,,0,0,14311,7.75,,Q
50
+ 49,0,3,"Samaan, Mr. Youssef",male,,2,0,2662,21.6792,,C
51
+ 50,0,3,"Arnold-Franchi, Mrs. Josef (Josefine Franchi)",female,18,1,0,349237,17.8,,S
52
+ 51,0,3,"Panula, Master. Juha Niilo",male,7,4,1,3101295,39.6875,,S
53
+ 52,0,3,"Nosworthy, Mr. Richard Cater",male,21,0,0,A/4. 39886,7.8,,S
54
+ 53,1,1,"Harper, Mrs. Henry Sleeper (Myna Haxtun)",female,49,1,0,PC 17572,76.7292,D33,C
55
+ 54,1,2,"Faunthorpe, Mrs. Lizzie (Elizabeth Anne Wilkinson)",female,29,1,0,2926,26,,S
56
+ 55,0,1,"Ostby, Mr. Engelhart Cornelius",male,65,0,1,113509,61.9792,B30,C
57
+ 56,1,1,"Woolner, Mr. Hugh",male,,0,0,19947,35.5,C52,S
58
+ 57,1,2,"Rugg, Miss. Emily",female,21,0,0,C.A. 31026,10.5,,S
59
+ 58,0,3,"Novel, Mr. Mansouer",male,28.5,0,0,2697,7.2292,,C
60
+ 59,1,2,"West, Miss. Constance Mirium",female,5,1,2,C.A. 34651,27.75,,S
61
+ 60,0,3,"Goodwin, Master. William Frederick",male,11,5,2,CA 2144,46.9,,S
62
+ 61,0,3,"Sirayanian, Mr. Orsen",male,22,0,0,2669,7.2292,,C
63
+ 62,1,1,"Icard, Miss. Amelie",female,38,0,0,113572,80,B28,
64
+ 63,0,1,"Harris, Mr. Henry Birkhardt",male,45,1,0,36973,83.475,C83,S
65
+ 64,0,3,"Skoog, Master. Harald",male,4,3,2,347088,27.9,,S
66
+ 65,0,1,"Stewart, Mr. Albert A",male,,0,0,PC 17605,27.7208,,C
67
+ 66,1,3,"Moubarek, Master. Gerios",male,,1,1,2661,15.2458,,C
68
+ 67,1,2,"Nye, Mrs. (Elizabeth Ramell)",female,29,0,0,C.A. 29395,10.5,F33,S
69
+ 68,0,3,"Crease, Mr. Ernest James",male,19,0,0,S.P. 3464,8.1583,,S
70
+ 69,1,3,"Andersson, Miss. Erna Alexandra",female,17,4,2,3101281,7.925,,S
71
+ 70,0,3,"Kink, Mr. Vincenz",male,26,2,0,315151,8.6625,,S
72
+ 71,0,2,"Jenkin, Mr. Stephen Curnow",male,32,0,0,C.A. 33111,10.5,,S
73
+ 72,0,3,"Goodwin, Miss. Lillian Amy",female,16,5,2,CA 2144,46.9,,S
74
+ 73,0,2,"Hood, Mr. Ambrose Jr",male,21,0,0,S.O.C. 14879,73.5,,S
75
+ 74,0,3,"Chronopoulos, Mr. Apostolos",male,26,1,0,2680,14.4542,,C
76
+ 75,1,3,"Bing, Mr. Lee",male,32,0,0,1601,56.4958,,S
77
+ 76,0,3,"Moen, Mr. Sigurd Hansen",male,25,0,0,348123,7.65,F G73,S
78
+ 77,0,3,"Staneff, Mr. Ivan",male,,0,0,349208,7.8958,,S
79
+ 78,0,3,"Moutal, Mr. Rahamin Haim",male,,0,0,374746,8.05,,S
80
+ 79,1,2,"Caldwell, Master. Alden Gates",male,0.83,0,2,248738,29,,S
81
+ 80,1,3,"Dowdell, Miss. Elizabeth",female,30,0,0,364516,12.475,,S
82
+ 81,0,3,"Waelens, Mr. Achille",male,22,0,0,345767,9,,S
83
+ 82,1,3,"Sheerlinck, Mr. Jan Baptist",male,29,0,0,345779,9.5,,S
84
+ 83,1,3,"McDermott, Miss. Brigdet Delia",female,,0,0,330932,7.7875,,Q
85
+ 84,0,1,"Carrau, Mr. Francisco M",male,28,0,0,113059,47.1,,S
86
+ 85,1,2,"Ilett, Miss. Bertha",female,17,0,0,SO/C 14885,10.5,,S
87
+ 86,1,3,"Backstrom, Mrs. Karl Alfred (Maria Mathilda Gustafsson)",female,33,3,0,3101278,15.85,,S
88
+ 87,0,3,"Ford, Mr. William Neal",male,16,1,3,W./C. 6608,34.375,,S
89
+ 88,0,3,"Slocovski, Mr. Selman Francis",male,,0,0,SOTON/OQ 392086,8.05,,S
90
+ 89,1,1,"Fortune, Miss. Mabel Helen",female,23,3,2,19950,263,C23 C25 C27,S
91
+ 90,0,3,"Celotti, Mr. Francesco",male,24,0,0,343275,8.05,,S
92
+ 91,0,3,"Christmann, Mr. Emil",male,29,0,0,343276,8.05,,S
93
+ 92,0,3,"Andreasson, Mr. Paul Edvin",male,20,0,0,347466,7.8542,,S
94
+ 93,0,1,"Chaffee, Mr. Herbert Fuller",male,46,1,0,W.E.P. 5734,61.175,E31,S
95
+ 94,0,3,"Dean, Mr. Bertram Frank",male,26,1,2,C.A. 2315,20.575,,S
96
+ 95,0,3,"Coxon, Mr. Daniel",male,59,0,0,364500,7.25,,S
97
+ 96,0,3,"Shorney, Mr. Charles Joseph",male,,0,0,374910,8.05,,S
98
+ 97,0,1,"Goldschmidt, Mr. George B",male,71,0,0,PC 17754,34.6542,A5,C
99
+ 98,1,1,"Greenfield, Mr. William Bertram",male,23,0,1,PC 17759,63.3583,D10 D12,C
100
+ 99,1,2,"Doling, Mrs. John T (Ada Julia Bone)",female,34,0,1,231919,23,,S
101
+ 100,0,2,"Kantor, Mr. Sinai",male,34,1,0,244367,26,,S
102
+ 101,0,3,"Petranec, Miss. Matilda",female,28,0,0,349245,7.8958,,S
103
+ 102,0,3,"Petroff, Mr. Pastcho (""Pentcho"")",male,,0,0,349215,7.8958,,S
104
+ 103,0,1,"White, Mr. Richard Frasar",male,21,0,1,35281,77.2875,D26,S
105
+ 104,0,3,"Johansson, Mr. Gustaf Joel",male,33,0,0,7540,8.6542,,S
106
+ 105,0,3,"Gustafsson, Mr. Anders Vilhelm",male,37,2,0,3101276,7.925,,S
107
+ 106,0,3,"Mionoff, Mr. Stoytcho",male,28,0,0,349207,7.8958,,S
108
+ 107,1,3,"Salkjelsvik, Miss. Anna Kristine",female,21,0,0,343120,7.65,,S
109
+ 108,1,3,"Moss, Mr. Albert Johan",male,,0,0,312991,7.775,,S
110
+ 109,0,3,"Rekic, Mr. Tido",male,38,0,0,349249,7.8958,,S
111
+ 110,1,3,"Moran, Miss. Bertha",female,,1,0,371110,24.15,,Q
112
+ 111,0,1,"Porter, Mr. Walter Chamberlain",male,47,0,0,110465,52,C110,S
113
+ 112,0,3,"Zabour, Miss. Hileni",female,14.5,1,0,2665,14.4542,,C
114
+ 113,0,3,"Barton, Mr. David John",male,22,0,0,324669,8.05,,S
115
+ 114,0,3,"Jussila, Miss. Katriina",female,20,1,0,4136,9.825,,S
116
+ 115,0,3,"Attalah, Miss. Malake",female,17,0,0,2627,14.4583,,C
117
+ 116,0,3,"Pekoniemi, Mr. Edvard",male,21,0,0,STON/O 2. 3101294,7.925,,S
118
+ 117,0,3,"Connors, Mr. Patrick",male,70.5,0,0,370369,7.75,,Q
119
+ 118,0,2,"Turpin, Mr. William John Robert",male,29,1,0,11668,21,,S
120
+ 119,0,1,"Baxter, Mr. Quigg Edmond",male,24,0,1,PC 17558,247.5208,B58 B60,C
121
+ 120,0,3,"Andersson, Miss. Ellis Anna Maria",female,2,4,2,347082,31.275,,S
122
+ 121,0,2,"Hickman, Mr. Stanley George",male,21,2,0,S.O.C. 14879,73.5,,S
123
+ 122,0,3,"Moore, Mr. Leonard Charles",male,,0,0,A4. 54510,8.05,,S
124
+ 123,0,2,"Nasser, Mr. Nicholas",male,32.5,1,0,237736,30.0708,,C
125
+ 124,1,2,"Webber, Miss. Susan",female,32.5,0,0,27267,13,E101,S
126
+ 125,0,1,"White, Mr. Percival Wayland",male,54,0,1,35281,77.2875,D26,S
127
+ 126,1,3,"Nicola-Yarred, Master. Elias",male,12,1,0,2651,11.2417,,C
128
+ 127,0,3,"McMahon, Mr. Martin",male,,0,0,370372,7.75,,Q
129
+ 128,1,3,"Madsen, Mr. Fridtjof Arne",male,24,0,0,C 17369,7.1417,,S
130
+ 129,1,3,"Peter, Miss. Anna",female,,1,1,2668,22.3583,F E69,C
131
+ 130,0,3,"Ekstrom, Mr. Johan",male,45,0,0,347061,6.975,,S
132
+ 131,0,3,"Drazenoic, Mr. Jozef",male,33,0,0,349241,7.8958,,C
133
+ 132,0,3,"Coelho, Mr. Domingos Fernandeo",male,20,0,0,SOTON/O.Q. 3101307,7.05,,S
134
+ 133,0,3,"Robins, Mrs. Alexander A (Grace Charity Laury)",female,47,1,0,A/5. 3337,14.5,,S
135
+ 134,1,2,"Weisz, Mrs. Leopold (Mathilde Francoise Pede)",female,29,1,0,228414,26,,S
136
+ 135,0,2,"Sobey, Mr. Samuel James Hayden",male,25,0,0,C.A. 29178,13,,S
137
+ 136,0,2,"Richard, Mr. Emile",male,23,0,0,SC/PARIS 2133,15.0458,,C
138
+ 137,1,1,"Newsom, Miss. Helen Monypeny",female,19,0,2,11752,26.2833,D47,S
139
+ 138,0,1,"Futrelle, Mr. Jacques Heath",male,37,1,0,113803,53.1,C123,S
140
+ 139,0,3,"Osen, Mr. Olaf Elon",male,16,0,0,7534,9.2167,,S
141
+ 140,0,1,"Giglio, Mr. Victor",male,24,0,0,PC 17593,79.2,B86,C
142
+ 141,0,3,"Boulos, Mrs. Joseph (Sultana)",female,,0,2,2678,15.2458,,C
143
+ 142,1,3,"Nysten, Miss. Anna Sofia",female,22,0,0,347081,7.75,,S
144
+ 143,1,3,"Hakkarainen, Mrs. Pekka Pietari (Elin Matilda Dolck)",female,24,1,0,STON/O2. 3101279,15.85,,S
145
+ 144,0,3,"Burke, Mr. Jeremiah",male,19,0,0,365222,6.75,,Q
146
+ 145,0,2,"Andrew, Mr. Edgardo Samuel",male,18,0,0,231945,11.5,,S
147
+ 146,0,2,"Nicholls, Mr. Joseph Charles",male,19,1,1,C.A. 33112,36.75,,S
148
+ 147,1,3,"Andersson, Mr. August Edvard (""Wennerstrom"")",male,27,0,0,350043,7.7958,,S
149
+ 148,0,3,"Ford, Miss. Robina Maggie ""Ruby""",female,9,2,2,W./C. 6608,34.375,,S
150
+ 149,0,2,"Navratil, Mr. Michel (""Louis M Hoffman"")",male,36.5,0,2,230080,26,F2,S
151
+ 150,0,2,"Byles, Rev. Thomas Roussel Davids",male,42,0,0,244310,13,,S
152
+ 151,0,2,"Bateman, Rev. Robert James",male,51,0,0,S.O.P. 1166,12.525,,S
153
+ 152,1,1,"Pears, Mrs. Thomas (Edith Wearne)",female,22,1,0,113776,66.6,C2,S
154
+ 153,0,3,"Meo, Mr. Alfonzo",male,55.5,0,0,A.5. 11206,8.05,,S
155
+ 154,0,3,"van Billiard, Mr. Austin Blyler",male,40.5,0,2,A/5. 851,14.5,,S
156
+ 155,0,3,"Olsen, Mr. Ole Martin",male,,0,0,Fa 265302,7.3125,,S
157
+ 156,0,1,"Williams, Mr. Charles Duane",male,51,0,1,PC 17597,61.3792,,C
158
+ 157,1,3,"Gilnagh, Miss. Katherine ""Katie""",female,16,0,0,35851,7.7333,,Q
159
+ 158,0,3,"Corn, Mr. Harry",male,30,0,0,SOTON/OQ 392090,8.05,,S
160
+ 159,0,3,"Smiljanic, Mr. Mile",male,,0,0,315037,8.6625,,S
161
+ 160,0,3,"Sage, Master. Thomas Henry",male,,8,2,CA. 2343,69.55,,S
162
+ 161,0,3,"Cribb, Mr. John Hatfield",male,44,0,1,371362,16.1,,S
163
+ 162,1,2,"Watt, Mrs. James (Elizabeth ""Bessie"" Inglis Milne)",female,40,0,0,C.A. 33595,15.75,,S
164
+ 163,0,3,"Bengtsson, Mr. John Viktor",male,26,0,0,347068,7.775,,S
165
+ 164,0,3,"Calic, Mr. Jovo",male,17,0,0,315093,8.6625,,S
166
+ 165,0,3,"Panula, Master. Eino Viljami",male,1,4,1,3101295,39.6875,,S
167
+ 166,1,3,"Goldsmith, Master. Frank John William ""Frankie""",male,9,0,2,363291,20.525,,S
168
+ 167,1,1,"Chibnall, Mrs. (Edith Martha Bowerman)",female,,0,1,113505,55,E33,S
169
+ 168,0,3,"Skoog, Mrs. William (Anna Bernhardina Karlsson)",female,45,1,4,347088,27.9,,S
170
+ 169,0,1,"Baumann, Mr. John D",male,,0,0,PC 17318,25.925,,S
171
+ 170,0,3,"Ling, Mr. Lee",male,28,0,0,1601,56.4958,,S
172
+ 171,0,1,"Van der hoef, Mr. Wyckoff",male,61,0,0,111240,33.5,B19,S
173
+ 172,0,3,"Rice, Master. Arthur",male,4,4,1,382652,29.125,,Q
174
+ 173,1,3,"Johnson, Miss. Eleanor Ileen",female,1,1,1,347742,11.1333,,S
175
+ 174,0,3,"Sivola, Mr. Antti Wilhelm",male,21,0,0,STON/O 2. 3101280,7.925,,S
176
+ 175,0,1,"Smith, Mr. James Clinch",male,56,0,0,17764,30.6958,A7,C
177
+ 176,0,3,"Klasen, Mr. Klas Albin",male,18,1,1,350404,7.8542,,S
178
+ 177,0,3,"Lefebre, Master. Henry Forbes",male,,3,1,4133,25.4667,,S
179
+ 178,0,1,"Isham, Miss. Ann Elizabeth",female,50,0,0,PC 17595,28.7125,C49,C
180
+ 179,0,2,"Hale, Mr. Reginald",male,30,0,0,250653,13,,S
181
+ 180,0,3,"Leonard, Mr. Lionel",male,36,0,0,LINE,0,,S
182
+ 181,0,3,"Sage, Miss. Constance Gladys",female,,8,2,CA. 2343,69.55,,S
183
+ 182,0,2,"Pernot, Mr. Rene",male,,0,0,SC/PARIS 2131,15.05,,C
184
+ 183,0,3,"Asplund, Master. Clarence Gustaf Hugo",male,9,4,2,347077,31.3875,,S
185
+ 184,1,2,"Becker, Master. Richard F",male,1,2,1,230136,39,F4,S
186
+ 185,1,3,"Kink-Heilmann, Miss. Luise Gretchen",female,4,0,2,315153,22.025,,S
187
+ 186,0,1,"Rood, Mr. Hugh Roscoe",male,,0,0,113767,50,A32,S
188
+ 187,1,3,"O'Brien, Mrs. Thomas (Johanna ""Hannah"" Godfrey)",female,,1,0,370365,15.5,,Q
189
+ 188,1,1,"Romaine, Mr. Charles Hallace (""Mr C Rolmane"")",male,45,0,0,111428,26.55,,S
190
+ 189,0,3,"Bourke, Mr. John",male,40,1,1,364849,15.5,,Q
191
+ 190,0,3,"Turcin, Mr. Stjepan",male,36,0,0,349247,7.8958,,S
192
+ 191,1,2,"Pinsky, Mrs. (Rosa)",female,32,0,0,234604,13,,S
193
+ 192,0,2,"Carbines, Mr. William",male,19,0,0,28424,13,,S
194
+ 193,1,3,"Andersen-Jensen, Miss. Carla Christine Nielsine",female,19,1,0,350046,7.8542,,S
195
+ 194,1,2,"Navratil, Master. Michel M",male,3,1,1,230080,26,F2,S
196
+ 195,1,1,"Brown, Mrs. James Joseph (Margaret Tobin)",female,44,0,0,PC 17610,27.7208,B4,C
197
+ 196,1,1,"Lurette, Miss. Elise",female,58,0,0,PC 17569,146.5208,B80,C
198
+ 197,0,3,"Mernagh, Mr. Robert",male,,0,0,368703,7.75,,Q
199
+ 198,0,3,"Olsen, Mr. Karl Siegwart Andreas",male,42,0,1,4579,8.4042,,S
200
+ 199,1,3,"Madigan, Miss. Margaret ""Maggie""",female,,0,0,370370,7.75,,Q
201
+ 200,0,2,"Yrois, Miss. Henriette (""Mrs Harbeck"")",female,24,0,0,248747,13,,S
202
+ 201,0,3,"Vande Walle, Mr. Nestor Cyriel",male,28,0,0,345770,9.5,,S
203
+ 202,0,3,"Sage, Mr. Frederick",male,,8,2,CA. 2343,69.55,,S
204
+ 203,0,3,"Johanson, Mr. Jakob Alfred",male,34,0,0,3101264,6.4958,,S
205
+ 204,0,3,"Youseff, Mr. Gerious",male,45.5,0,0,2628,7.225,,C
206
+ 205,1,3,"Cohen, Mr. Gurshon ""Gus""",male,18,0,0,A/5 3540,8.05,,S
207
+ 206,0,3,"Strom, Miss. Telma Matilda",female,2,0,1,347054,10.4625,G6,S
208
+ 207,0,3,"Backstrom, Mr. Karl Alfred",male,32,1,0,3101278,15.85,,S
209
+ 208,1,3,"Albimona, Mr. Nassef Cassem",male,26,0,0,2699,18.7875,,C
210
+ 209,1,3,"Carr, Miss. Helen ""Ellen""",female,16,0,0,367231,7.75,,Q
211
+ 210,1,1,"Blank, Mr. Henry",male,40,0,0,112277,31,A31,C
212
+ 211,0,3,"Ali, Mr. Ahmed",male,24,0,0,SOTON/O.Q. 3101311,7.05,,S
213
+ 212,1,2,"Cameron, Miss. Clear Annie",female,35,0,0,F.C.C. 13528,21,,S
214
+ 213,0,3,"Perkin, Mr. John Henry",male,22,0,0,A/5 21174,7.25,,S
215
+ 214,0,2,"Givard, Mr. Hans Kristensen",male,30,0,0,250646,13,,S
216
+ 215,0,3,"Kiernan, Mr. Philip",male,,1,0,367229,7.75,,Q
217
+ 216,1,1,"Newell, Miss. Madeleine",female,31,1,0,35273,113.275,D36,C
218
+ 217,1,3,"Honkanen, Miss. Eliina",female,27,0,0,STON/O2. 3101283,7.925,,S
219
+ 218,0,2,"Jacobsohn, Mr. Sidney Samuel",male,42,1,0,243847,27,,S
220
+ 219,1,1,"Bazzani, Miss. Albina",female,32,0,0,11813,76.2917,D15,C
221
+ 220,0,2,"Harris, Mr. Walter",male,30,0,0,W/C 14208,10.5,,S
222
+ 221,1,3,"Sunderland, Mr. Victor Francis",male,16,0,0,SOTON/OQ 392089,8.05,,S
223
+ 222,0,2,"Bracken, Mr. James H",male,27,0,0,220367,13,,S
224
+ 223,0,3,"Green, Mr. George Henry",male,51,0,0,21440,8.05,,S
225
+ 224,0,3,"Nenkoff, Mr. Christo",male,,0,0,349234,7.8958,,S
226
+ 225,1,1,"Hoyt, Mr. Frederick Maxfield",male,38,1,0,19943,90,C93,S
227
+ 226,0,3,"Berglund, Mr. Karl Ivar Sven",male,22,0,0,PP 4348,9.35,,S
228
+ 227,1,2,"Mellors, Mr. William John",male,19,0,0,SW/PP 751,10.5,,S
229
+ 228,0,3,"Lovell, Mr. John Hall (""Henry"")",male,20.5,0,0,A/5 21173,7.25,,S
230
+ 229,0,2,"Fahlstrom, Mr. Arne Jonas",male,18,0,0,236171,13,,S
231
+ 230,0,3,"Lefebre, Miss. Mathilde",female,,3,1,4133,25.4667,,S
232
+ 231,1,1,"Harris, Mrs. Henry Birkhardt (Irene Wallach)",female,35,1,0,36973,83.475,C83,S
233
+ 232,0,3,"Larsson, Mr. Bengt Edvin",male,29,0,0,347067,7.775,,S
234
+ 233,0,2,"Sjostedt, Mr. Ernst Adolf",male,59,0,0,237442,13.5,,S
235
+ 234,1,3,"Asplund, Miss. Lillian Gertrud",female,5,4,2,347077,31.3875,,S
236
+ 235,0,2,"Leyson, Mr. Robert William Norman",male,24,0,0,C.A. 29566,10.5,,S
237
+ 236,0,3,"Harknett, Miss. Alice Phoebe",female,,0,0,W./C. 6609,7.55,,S
238
+ 237,0,2,"Hold, Mr. Stephen",male,44,1,0,26707,26,,S
239
+ 238,1,2,"Collyer, Miss. Marjorie ""Lottie""",female,8,0,2,C.A. 31921,26.25,,S
240
+ 239,0,2,"Pengelly, Mr. Frederick William",male,19,0,0,28665,10.5,,S
241
+ 240,0,2,"Hunt, Mr. George Henry",male,33,0,0,SCO/W 1585,12.275,,S
242
+ 241,0,3,"Zabour, Miss. Thamine",female,,1,0,2665,14.4542,,C
243
+ 242,1,3,"Murphy, Miss. Katherine ""Kate""",female,,1,0,367230,15.5,,Q
244
+ 243,0,2,"Coleridge, Mr. Reginald Charles",male,29,0,0,W./C. 14263,10.5,,S
245
+ 244,0,3,"Maenpaa, Mr. Matti Alexanteri",male,22,0,0,STON/O 2. 3101275,7.125,,S
246
+ 245,0,3,"Attalah, Mr. Sleiman",male,30,0,0,2694,7.225,,C
247
+ 246,0,1,"Minahan, Dr. William Edward",male,44,2,0,19928,90,C78,Q
248
+ 247,0,3,"Lindahl, Miss. Agda Thorilda Viktoria",female,25,0,0,347071,7.775,,S
249
+ 248,1,2,"Hamalainen, Mrs. William (Anna)",female,24,0,2,250649,14.5,,S
250
+ 249,1,1,"Beckwith, Mr. Richard Leonard",male,37,1,1,11751,52.5542,D35,S
251
+ 250,0,2,"Carter, Rev. Ernest Courtenay",male,54,1,0,244252,26,,S
252
+ 251,0,3,"Reed, Mr. James George",male,,0,0,362316,7.25,,S
253
+ 252,0,3,"Strom, Mrs. Wilhelm (Elna Matilda Persson)",female,29,1,1,347054,10.4625,G6,S
254
+ 253,0,1,"Stead, Mr. William Thomas",male,62,0,0,113514,26.55,C87,S
255
+ 254,0,3,"Lobb, Mr. William Arthur",male,30,1,0,A/5. 3336,16.1,,S
256
+ 255,0,3,"Rosblom, Mrs. Viktor (Helena Wilhelmina)",female,41,0,2,370129,20.2125,,S
257
+ 256,1,3,"Touma, Mrs. Darwis (Hanne Youssef Razi)",female,29,0,2,2650,15.2458,,C
258
+ 257,1,1,"Thorne, Mrs. Gertrude Maybelle",female,,0,0,PC 17585,79.2,,C
259
+ 258,1,1,"Cherry, Miss. Gladys",female,30,0,0,110152,86.5,B77,S
260
+ 259,1,1,"Ward, Miss. Anna",female,35,0,0,PC 17755,512.3292,,C
261
+ 260,1,2,"Parrish, Mrs. (Lutie Davis)",female,50,0,1,230433,26,,S
262
+ 261,0,3,"Smith, Mr. Thomas",male,,0,0,384461,7.75,,Q
263
+ 262,1,3,"Asplund, Master. Edvin Rojj Felix",male,3,4,2,347077,31.3875,,S
264
+ 263,0,1,"Taussig, Mr. Emil",male,52,1,1,110413,79.65,E67,S
265
+ 264,0,1,"Harrison, Mr. William",male,40,0,0,112059,0,B94,S
266
+ 265,0,3,"Henry, Miss. Delia",female,,0,0,382649,7.75,,Q
267
+ 266,0,2,"Reeves, Mr. David",male,36,0,0,C.A. 17248,10.5,,S
268
+ 267,0,3,"Panula, Mr. Ernesti Arvid",male,16,4,1,3101295,39.6875,,S
269
+ 268,1,3,"Persson, Mr. Ernst Ulrik",male,25,1,0,347083,7.775,,S
270
+ 269,1,1,"Graham, Mrs. William Thompson (Edith Junkins)",female,58,0,1,PC 17582,153.4625,C125,S
271
+ 270,1,1,"Bissette, Miss. Amelia",female,35,0,0,PC 17760,135.6333,C99,S
272
+ 271,0,1,"Cairns, Mr. Alexander",male,,0,0,113798,31,,S
273
+ 272,1,3,"Tornquist, Mr. William Henry",male,25,0,0,LINE,0,,S
274
+ 273,1,2,"Mellinger, Mrs. (Elizabeth Anne Maidment)",female,41,0,1,250644,19.5,,S
275
+ 274,0,1,"Natsch, Mr. Charles H",male,37,0,1,PC 17596,29.7,C118,C
276
+ 275,1,3,"Healy, Miss. Hanora ""Nora""",female,,0,0,370375,7.75,,Q
277
+ 276,1,1,"Andrews, Miss. Kornelia Theodosia",female,63,1,0,13502,77.9583,D7,S
278
+ 277,0,3,"Lindblom, Miss. Augusta Charlotta",female,45,0,0,347073,7.75,,S
279
+ 278,0,2,"Parkes, Mr. Francis ""Frank""",male,,0,0,239853,0,,S
280
+ 279,0,3,"Rice, Master. Eric",male,7,4,1,382652,29.125,,Q
281
+ 280,1,3,"Abbott, Mrs. Stanton (Rosa Hunt)",female,35,1,1,C.A. 2673,20.25,,S
282
+ 281,0,3,"Duane, Mr. Frank",male,65,0,0,336439,7.75,,Q
283
+ 282,0,3,"Olsson, Mr. Nils Johan Goransson",male,28,0,0,347464,7.8542,,S
284
+ 283,0,3,"de Pelsmaeker, Mr. Alfons",male,16,0,0,345778,9.5,,S
285
+ 284,1,3,"Dorking, Mr. Edward Arthur",male,19,0,0,A/5. 10482,8.05,,S
286
+ 285,0,1,"Smith, Mr. Richard William",male,,0,0,113056,26,A19,S
287
+ 286,0,3,"Stankovic, Mr. Ivan",male,33,0,0,349239,8.6625,,C
288
+ 287,1,3,"de Mulder, Mr. Theodore",male,30,0,0,345774,9.5,,S
289
+ 288,0,3,"Naidenoff, Mr. Penko",male,22,0,0,349206,7.8958,,S
290
+ 289,1,2,"Hosono, Mr. Masabumi",male,42,0,0,237798,13,,S
291
+ 290,1,3,"Connolly, Miss. Kate",female,22,0,0,370373,7.75,,Q
292
+ 291,1,1,"Barber, Miss. Ellen ""Nellie""",female,26,0,0,19877,78.85,,S
293
+ 292,1,1,"Bishop, Mrs. Dickinson H (Helen Walton)",female,19,1,0,11967,91.0792,B49,C
294
+ 293,0,2,"Levy, Mr. Rene Jacques",male,36,0,0,SC/Paris 2163,12.875,D,C
295
+ 294,0,3,"Haas, Miss. Aloisia",female,24,0,0,349236,8.85,,S
296
+ 295,0,3,"Mineff, Mr. Ivan",male,24,0,0,349233,7.8958,,S
297
+ 296,0,1,"Lewy, Mr. Ervin G",male,,0,0,PC 17612,27.7208,,C
298
+ 297,0,3,"Hanna, Mr. Mansour",male,23.5,0,0,2693,7.2292,,C
299
+ 298,0,1,"Allison, Miss. Helen Loraine",female,2,1,2,113781,151.55,C22 C26,S
300
+ 299,1,1,"Saalfeld, Mr. Adolphe",male,,0,0,19988,30.5,C106,S
301
+ 300,1,1,"Baxter, Mrs. James (Helene DeLaudeniere Chaput)",female,50,0,1,PC 17558,247.5208,B58 B60,C
302
+ 301,1,3,"Kelly, Miss. Anna Katherine ""Annie Kate""",female,,0,0,9234,7.75,,Q
303
+ 302,1,3,"McCoy, Mr. Bernard",male,,2,0,367226,23.25,,Q
304
+ 303,0,3,"Johnson, Mr. William Cahoone Jr",male,19,0,0,LINE,0,,S
305
+ 304,1,2,"Keane, Miss. Nora A",female,,0,0,226593,12.35,E101,Q
306
+ 305,0,3,"Williams, Mr. Howard Hugh ""Harry""",male,,0,0,A/5 2466,8.05,,S
307
+ 306,1,1,"Allison, Master. Hudson Trevor",male,0.92,1,2,113781,151.55,C22 C26,S
308
+ 307,1,1,"Fleming, Miss. Margaret",female,,0,0,17421,110.8833,,C
309
+ 308,1,1,"Penasco y Castellana, Mrs. Victor de Satode (Maria Josefa Perez de Soto y Vallejo)",female,17,1,0,PC 17758,108.9,C65,C
310
+ 309,0,2,"Abelson, Mr. Samuel",male,30,1,0,P/PP 3381,24,,C
311
+ 310,1,1,"Francatelli, Miss. Laura Mabel",female,30,0,0,PC 17485,56.9292,E36,C
312
+ 311,1,1,"Hays, Miss. Margaret Bechstein",female,24,0,0,11767,83.1583,C54,C
313
+ 312,1,1,"Ryerson, Miss. Emily Borie",female,18,2,2,PC 17608,262.375,B57 B59 B63 B66,C
314
+ 313,0,2,"Lahtinen, Mrs. William (Anna Sylfven)",female,26,1,1,250651,26,,S
315
+ 314,0,3,"Hendekovic, Mr. Ignjac",male,28,0,0,349243,7.8958,,S
316
+ 315,0,2,"Hart, Mr. Benjamin",male,43,1,1,F.C.C. 13529,26.25,,S
317
+ 316,1,3,"Nilsson, Miss. Helmina Josefina",female,26,0,0,347470,7.8542,,S
318
+ 317,1,2,"Kantor, Mrs. Sinai (Miriam Sternin)",female,24,1,0,244367,26,,S
319
+ 318,0,2,"Moraweck, Dr. Ernest",male,54,0,0,29011,14,,S
320
+ 319,1,1,"Wick, Miss. Mary Natalie",female,31,0,2,36928,164.8667,C7,S
321
+ 320,1,1,"Spedden, Mrs. Frederic Oakley (Margaretta Corning Stone)",female,40,1,1,16966,134.5,E34,C
322
+ 321,0,3,"Dennis, Mr. Samuel",male,22,0,0,A/5 21172,7.25,,S
323
+ 322,0,3,"Danoff, Mr. Yoto",male,27,0,0,349219,7.8958,,S
324
+ 323,1,2,"Slayter, Miss. Hilda Mary",female,30,0,0,234818,12.35,,Q
325
+ 324,1,2,"Caldwell, Mrs. Albert Francis (Sylvia Mae Harbaugh)",female,22,1,1,248738,29,,S
326
+ 325,0,3,"Sage, Mr. George John Jr",male,,8,2,CA. 2343,69.55,,S
327
+ 326,1,1,"Young, Miss. Marie Grice",female,36,0,0,PC 17760,135.6333,C32,C
328
+ 327,0,3,"Nysveen, Mr. Johan Hansen",male,61,0,0,345364,6.2375,,S
329
+ 328,1,2,"Ball, Mrs. (Ada E Hall)",female,36,0,0,28551,13,D,S
330
+ 329,1,3,"Goldsmith, Mrs. Frank John (Emily Alice Brown)",female,31,1,1,363291,20.525,,S
331
+ 330,1,1,"Hippach, Miss. Jean Gertrude",female,16,0,1,111361,57.9792,B18,C
332
+ 331,1,3,"McCoy, Miss. Agnes",female,,2,0,367226,23.25,,Q
333
+ 332,0,1,"Partner, Mr. Austen",male,45.5,0,0,113043,28.5,C124,S
334
+ 333,0,1,"Graham, Mr. George Edward",male,38,0,1,PC 17582,153.4625,C91,S
335
+ 334,0,3,"Vander Planke, Mr. Leo Edmondus",male,16,2,0,345764,18,,S
336
+ 335,1,1,"Frauenthal, Mrs. Henry William (Clara Heinsheimer)",female,,1,0,PC 17611,133.65,,S
337
+ 336,0,3,"Denkoff, Mr. Mitto",male,,0,0,349225,7.8958,,S
338
+ 337,0,1,"Pears, Mr. Thomas Clinton",male,29,1,0,113776,66.6,C2,S
339
+ 338,1,1,"Burns, Miss. Elizabeth Margaret",female,41,0,0,16966,134.5,E40,C
340
+ 339,1,3,"Dahl, Mr. Karl Edwart",male,45,0,0,7598,8.05,,S
341
+ 340,0,1,"Blackwell, Mr. Stephen Weart",male,45,0,0,113784,35.5,T,S
342
+ 341,1,2,"Navratil, Master. Edmond Roger",male,2,1,1,230080,26,F2,S
343
+ 342,1,1,"Fortune, Miss. Alice Elizabeth",female,24,3,2,19950,263,C23 C25 C27,S
344
+ 343,0,2,"Collander, Mr. Erik Gustaf",male,28,0,0,248740,13,,S
345
+ 344,0,2,"Sedgwick, Mr. Charles Frederick Waddington",male,25,0,0,244361,13,,S
346
+ 345,0,2,"Fox, Mr. Stanley Hubert",male,36,0,0,229236,13,,S
347
+ 346,1,2,"Brown, Miss. Amelia ""Mildred""",female,24,0,0,248733,13,F33,S
348
+ 347,1,2,"Smith, Miss. Marion Elsie",female,40,0,0,31418,13,,S
349
+ 348,1,3,"Davison, Mrs. Thomas Henry (Mary E Finck)",female,,1,0,386525,16.1,,S
350
+ 349,1,3,"Coutts, Master. William Loch ""William""",male,3,1,1,C.A. 37671,15.9,,S
351
+ 350,0,3,"Dimic, Mr. Jovan",male,42,0,0,315088,8.6625,,S
352
+ 351,0,3,"Odahl, Mr. Nils Martin",male,23,0,0,7267,9.225,,S
353
+ 352,0,1,"Williams-Lambert, Mr. Fletcher Fellows",male,,0,0,113510,35,C128,S
354
+ 353,0,3,"Elias, Mr. Tannous",male,15,1,1,2695,7.2292,,C
355
+ 354,0,3,"Arnold-Franchi, Mr. Josef",male,25,1,0,349237,17.8,,S
356
+ 355,0,3,"Yousif, Mr. Wazli",male,,0,0,2647,7.225,,C
357
+ 356,0,3,"Vanden Steen, Mr. Leo Peter",male,28,0,0,345783,9.5,,S
358
+ 357,1,1,"Bowerman, Miss. Elsie Edith",female,22,0,1,113505,55,E33,S
359
+ 358,0,2,"Funk, Miss. Annie Clemmer",female,38,0,0,237671,13,,S
360
+ 359,1,3,"McGovern, Miss. Mary",female,,0,0,330931,7.8792,,Q
361
+ 360,1,3,"Mockler, Miss. Helen Mary ""Ellie""",female,,0,0,330980,7.8792,,Q
362
+ 361,0,3,"Skoog, Mr. Wilhelm",male,40,1,4,347088,27.9,,S
363
+ 362,0,2,"del Carlo, Mr. Sebastiano",male,29,1,0,SC/PARIS 2167,27.7208,,C
364
+ 363,0,3,"Barbara, Mrs. (Catherine David)",female,45,0,1,2691,14.4542,,C
365
+ 364,0,3,"Asim, Mr. Adola",male,35,0,0,SOTON/O.Q. 3101310,7.05,,S
366
+ 365,0,3,"O'Brien, Mr. Thomas",male,,1,0,370365,15.5,,Q
367
+ 366,0,3,"Adahl, Mr. Mauritz Nils Martin",male,30,0,0,C 7076,7.25,,S
368
+ 367,1,1,"Warren, Mrs. Frank Manley (Anna Sophia Atkinson)",female,60,1,0,110813,75.25,D37,C
369
+ 368,1,3,"Moussa, Mrs. (Mantoura Boulos)",female,,0,0,2626,7.2292,,C
370
+ 369,1,3,"Jermyn, Miss. Annie",female,,0,0,14313,7.75,,Q
371
+ 370,1,1,"Aubart, Mme. Leontine Pauline",female,24,0,0,PC 17477,69.3,B35,C
372
+ 371,1,1,"Harder, Mr. George Achilles",male,25,1,0,11765,55.4417,E50,C
373
+ 372,0,3,"Wiklund, Mr. Jakob Alfred",male,18,1,0,3101267,6.4958,,S
374
+ 373,0,3,"Beavan, Mr. William Thomas",male,19,0,0,323951,8.05,,S
375
+ 374,0,1,"Ringhini, Mr. Sante",male,22,0,0,PC 17760,135.6333,,C
376
+ 375,0,3,"Palsson, Miss. Stina Viola",female,3,3,1,349909,21.075,,S
377
+ 376,1,1,"Meyer, Mrs. Edgar Joseph (Leila Saks)",female,,1,0,PC 17604,82.1708,,C
378
+ 377,1,3,"Landergren, Miss. Aurora Adelia",female,22,0,0,C 7077,7.25,,S
379
+ 378,0,1,"Widener, Mr. Harry Elkins",male,27,0,2,113503,211.5,C82,C
380
+ 379,0,3,"Betros, Mr. Tannous",male,20,0,0,2648,4.0125,,C
381
+ 380,0,3,"Gustafsson, Mr. Karl Gideon",male,19,0,0,347069,7.775,,S
382
+ 381,1,1,"Bidois, Miss. Rosalie",female,42,0,0,PC 17757,227.525,,C
383
+ 382,1,3,"Nakid, Miss. Maria (""Mary"")",female,1,0,2,2653,15.7417,,C
384
+ 383,0,3,"Tikkanen, Mr. Juho",male,32,0,0,STON/O 2. 3101293,7.925,,S
385
+ 384,1,1,"Holverson, Mrs. Alexander Oskar (Mary Aline Towner)",female,35,1,0,113789,52,,S
386
+ 385,0,3,"Plotcharsky, Mr. Vasil",male,,0,0,349227,7.8958,,S
387
+ 386,0,2,"Davies, Mr. Charles Henry",male,18,0,0,S.O.C. 14879,73.5,,S
388
+ 387,0,3,"Goodwin, Master. Sidney Leonard",male,1,5,2,CA 2144,46.9,,S
389
+ 388,1,2,"Buss, Miss. Kate",female,36,0,0,27849,13,,S
390
+ 389,0,3,"Sadlier, Mr. Matthew",male,,0,0,367655,7.7292,,Q
391
+ 390,1,2,"Lehmann, Miss. Bertha",female,17,0,0,SC 1748,12,,C
392
+ 391,1,1,"Carter, Mr. William Ernest",male,36,1,2,113760,120,B96 B98,S
393
+ 392,1,3,"Jansson, Mr. Carl Olof",male,21,0,0,350034,7.7958,,S
394
+ 393,0,3,"Gustafsson, Mr. Johan Birger",male,28,2,0,3101277,7.925,,S
395
+ 394,1,1,"Newell, Miss. Marjorie",female,23,1,0,35273,113.275,D36,C
396
+ 395,1,3,"Sandstrom, Mrs. Hjalmar (Agnes Charlotta Bengtsson)",female,24,0,2,PP 9549,16.7,G6,S
397
+ 396,0,3,"Johansson, Mr. Erik",male,22,0,0,350052,7.7958,,S
398
+ 397,0,3,"Olsson, Miss. Elina",female,31,0,0,350407,7.8542,,S
399
+ 398,0,2,"McKane, Mr. Peter David",male,46,0,0,28403,26,,S
400
+ 399,0,2,"Pain, Dr. Alfred",male,23,0,0,244278,10.5,,S
401
+ 400,1,2,"Trout, Mrs. William H (Jessie L)",female,28,0,0,240929,12.65,,S
402
+ 401,1,3,"Niskanen, Mr. Juha",male,39,0,0,STON/O 2. 3101289,7.925,,S
403
+ 402,0,3,"Adams, Mr. John",male,26,0,0,341826,8.05,,S
404
+ 403,0,3,"Jussila, Miss. Mari Aina",female,21,1,0,4137,9.825,,S
405
+ 404,0,3,"Hakkarainen, Mr. Pekka Pietari",male,28,1,0,STON/O2. 3101279,15.85,,S
406
+ 405,0,3,"Oreskovic, Miss. Marija",female,20,0,0,315096,8.6625,,S
407
+ 406,0,2,"Gale, Mr. Shadrach",male,34,1,0,28664,21,,S
408
+ 407,0,3,"Widegren, Mr. Carl/Charles Peter",male,51,0,0,347064,7.75,,S
409
+ 408,1,2,"Richards, Master. William Rowe",male,3,1,1,29106,18.75,,S
410
+ 409,0,3,"Birkeland, Mr. Hans Martin Monsen",male,21,0,0,312992,7.775,,S
411
+ 410,0,3,"Lefebre, Miss. Ida",female,,3,1,4133,25.4667,,S
412
+ 411,0,3,"Sdycoff, Mr. Todor",male,,0,0,349222,7.8958,,S
413
+ 412,0,3,"Hart, Mr. Henry",male,,0,0,394140,6.8583,,Q
414
+ 413,1,1,"Minahan, Miss. Daisy E",female,33,1,0,19928,90,C78,Q
415
+ 414,0,2,"Cunningham, Mr. Alfred Fleming",male,,0,0,239853,0,,S
416
+ 415,1,3,"Sundman, Mr. Johan Julian",male,44,0,0,STON/O 2. 3101269,7.925,,S
417
+ 416,0,3,"Meek, Mrs. Thomas (Annie Louise Rowley)",female,,0,0,343095,8.05,,S
418
+ 417,1,2,"Drew, Mrs. James Vivian (Lulu Thorne Christian)",female,34,1,1,28220,32.5,,S
419
+ 418,1,2,"Silven, Miss. Lyyli Karoliina",female,18,0,2,250652,13,,S
420
+ 419,0,2,"Matthews, Mr. William John",male,30,0,0,28228,13,,S
421
+ 420,0,3,"Van Impe, Miss. Catharina",female,10,0,2,345773,24.15,,S
422
+ 421,0,3,"Gheorgheff, Mr. Stanio",male,,0,0,349254,7.8958,,C
423
+ 422,0,3,"Charters, Mr. David",male,21,0,0,A/5. 13032,7.7333,,Q
424
+ 423,0,3,"Zimmerman, Mr. Leo",male,29,0,0,315082,7.875,,S
425
+ 424,0,3,"Danbom, Mrs. Ernst Gilbert (Anna Sigrid Maria Brogren)",female,28,1,1,347080,14.4,,S
426
+ 425,0,3,"Rosblom, Mr. Viktor Richard",male,18,1,1,370129,20.2125,,S
427
+ 426,0,3,"Wiseman, Mr. Phillippe",male,,0,0,A/4. 34244,7.25,,S
428
+ 427,1,2,"Clarke, Mrs. Charles V (Ada Maria Winfield)",female,28,1,0,2003,26,,S
429
+ 428,1,2,"Phillips, Miss. Kate Florence (""Mrs Kate Louise Phillips Marshall"")",female,19,0,0,250655,26,,S
430
+ 429,0,3,"Flynn, Mr. James",male,,0,0,364851,7.75,,Q
431
+ 430,1,3,"Pickard, Mr. Berk (Berk Trembisky)",male,32,0,0,SOTON/O.Q. 392078,8.05,E10,S
432
+ 431,1,1,"Bjornstrom-Steffansson, Mr. Mauritz Hakan",male,28,0,0,110564,26.55,C52,S
433
+ 432,1,3,"Thorneycroft, Mrs. Percival (Florence Kate White)",female,,1,0,376564,16.1,,S
434
+ 433,1,2,"Louch, Mrs. Charles Alexander (Alice Adelaide Slow)",female,42,1,0,SC/AH 3085,26,,S
435
+ 434,0,3,"Kallio, Mr. Nikolai Erland",male,17,0,0,STON/O 2. 3101274,7.125,,S
436
+ 435,0,1,"Silvey, Mr. William Baird",male,50,1,0,13507,55.9,E44,S
437
+ 436,1,1,"Carter, Miss. Lucile Polk",female,14,1,2,113760,120,B96 B98,S
438
+ 437,0,3,"Ford, Miss. Doolina Margaret ""Daisy""",female,21,2,2,W./C. 6608,34.375,,S
439
+ 438,1,2,"Richards, Mrs. Sidney (Emily Hocking)",female,24,2,3,29106,18.75,,S
440
+ 439,0,1,"Fortune, Mr. Mark",male,64,1,4,19950,263,C23 C25 C27,S
441
+ 440,0,2,"Kvillner, Mr. Johan Henrik Johannesson",male,31,0,0,C.A. 18723,10.5,,S
442
+ 441,1,2,"Hart, Mrs. Benjamin (Esther Ada Bloomfield)",female,45,1,1,F.C.C. 13529,26.25,,S
443
+ 442,0,3,"Hampe, Mr. Leon",male,20,0,0,345769,9.5,,S
444
+ 443,0,3,"Petterson, Mr. Johan Emil",male,25,1,0,347076,7.775,,S
445
+ 444,1,2,"Reynaldo, Ms. Encarnacion",female,28,0,0,230434,13,,S
446
+ 445,1,3,"Johannesen-Bratthammer, Mr. Bernt",male,,0,0,65306,8.1125,,S
447
+ 446,1,1,"Dodge, Master. Washington",male,4,0,2,33638,81.8583,A34,S
448
+ 447,1,2,"Mellinger, Miss. Madeleine Violet",female,13,0,1,250644,19.5,,S
449
+ 448,1,1,"Seward, Mr. Frederic Kimber",male,34,0,0,113794,26.55,,S
450
+ 449,1,3,"Baclini, Miss. Marie Catherine",female,5,2,1,2666,19.2583,,C
451
+ 450,1,1,"Peuchen, Major. Arthur Godfrey",male,52,0,0,113786,30.5,C104,S
452
+ 451,0,2,"West, Mr. Edwy Arthur",male,36,1,2,C.A. 34651,27.75,,S
453
+ 452,0,3,"Hagland, Mr. Ingvald Olai Olsen",male,,1,0,65303,19.9667,,S
454
+ 453,0,1,"Foreman, Mr. Benjamin Laventall",male,30,0,0,113051,27.75,C111,C
455
+ 454,1,1,"Goldenberg, Mr. Samuel L",male,49,1,0,17453,89.1042,C92,C
456
+ 455,0,3,"Peduzzi, Mr. Joseph",male,,0,0,A/5 2817,8.05,,S
457
+ 456,1,3,"Jalsevac, Mr. Ivan",male,29,0,0,349240,7.8958,,C
458
+ 457,0,1,"Millet, Mr. Francis Davis",male,65,0,0,13509,26.55,E38,S
459
+ 458,1,1,"Kenyon, Mrs. Frederick R (Marion)",female,,1,0,17464,51.8625,D21,S
460
+ 459,1,2,"Toomey, Miss. Ellen",female,50,0,0,F.C.C. 13531,10.5,,S
461
+ 460,0,3,"O'Connor, Mr. Maurice",male,,0,0,371060,7.75,,Q
462
+ 461,1,1,"Anderson, Mr. Harry",male,48,0,0,19952,26.55,E12,S
463
+ 462,0,3,"Morley, Mr. William",male,34,0,0,364506,8.05,,S
464
+ 463,0,1,"Gee, Mr. Arthur H",male,47,0,0,111320,38.5,E63,S
465
+ 464,0,2,"Milling, Mr. Jacob Christian",male,48,0,0,234360,13,,S
466
+ 465,0,3,"Maisner, Mr. Simon",male,,0,0,A/S 2816,8.05,,S
467
+ 466,0,3,"Goncalves, Mr. Manuel Estanslas",male,38,0,0,SOTON/O.Q. 3101306,7.05,,S
468
+ 467,0,2,"Campbell, Mr. William",male,,0,0,239853,0,,S
469
+ 468,0,1,"Smart, Mr. John Montgomery",male,56,0,0,113792,26.55,,S
470
+ 469,0,3,"Scanlan, Mr. James",male,,0,0,36209,7.725,,Q
471
+ 470,1,3,"Baclini, Miss. Helene Barbara",female,0.75,2,1,2666,19.2583,,C
472
+ 471,0,3,"Keefe, Mr. Arthur",male,,0,0,323592,7.25,,S
473
+ 472,0,3,"Cacic, Mr. Luka",male,38,0,0,315089,8.6625,,S
474
+ 473,1,2,"West, Mrs. Edwy Arthur (Ada Mary Worth)",female,33,1,2,C.A. 34651,27.75,,S
475
+ 474,1,2,"Jerwan, Mrs. Amin S (Marie Marthe Thuillard)",female,23,0,0,SC/AH Basle 541,13.7917,D,C
476
+ 475,0,3,"Strandberg, Miss. Ida Sofia",female,22,0,0,7553,9.8375,,S
477
+ 476,0,1,"Clifford, Mr. George Quincy",male,,0,0,110465,52,A14,S
478
+ 477,0,2,"Renouf, Mr. Peter Henry",male,34,1,0,31027,21,,S
479
+ 478,0,3,"Braund, Mr. Lewis Richard",male,29,1,0,3460,7.0458,,S
480
+ 479,0,3,"Karlsson, Mr. Nils August",male,22,0,0,350060,7.5208,,S
481
+ 480,1,3,"Hirvonen, Miss. Hildur E",female,2,0,1,3101298,12.2875,,S
482
+ 481,0,3,"Goodwin, Master. Harold Victor",male,9,5,2,CA 2144,46.9,,S
483
+ 482,0,2,"Frost, Mr. Anthony Wood ""Archie""",male,,0,0,239854,0,,S
484
+ 483,0,3,"Rouse, Mr. Richard Henry",male,50,0,0,A/5 3594,8.05,,S
485
+ 484,1,3,"Turkula, Mrs. (Hedwig)",female,63,0,0,4134,9.5875,,S
486
+ 485,1,1,"Bishop, Mr. Dickinson H",male,25,1,0,11967,91.0792,B49,C
487
+ 486,0,3,"Lefebre, Miss. Jeannie",female,,3,1,4133,25.4667,,S
488
+ 487,1,1,"Hoyt, Mrs. Frederick Maxfield (Jane Anne Forby)",female,35,1,0,19943,90,C93,S
489
+ 488,0,1,"Kent, Mr. Edward Austin",male,58,0,0,11771,29.7,B37,C
490
+ 489,0,3,"Somerton, Mr. Francis William",male,30,0,0,A.5. 18509,8.05,,S
491
+ 490,1,3,"Coutts, Master. Eden Leslie ""Neville""",male,9,1,1,C.A. 37671,15.9,,S
492
+ 491,0,3,"Hagland, Mr. Konrad Mathias Reiersen",male,,1,0,65304,19.9667,,S
493
+ 492,0,3,"Windelov, Mr. Einar",male,21,0,0,SOTON/OQ 3101317,7.25,,S
494
+ 493,0,1,"Molson, Mr. Harry Markland",male,55,0,0,113787,30.5,C30,S
495
+ 494,0,1,"Artagaveytia, Mr. Ramon",male,71,0,0,PC 17609,49.5042,,C
496
+ 495,0,3,"Stanley, Mr. Edward Roland",male,21,0,0,A/4 45380,8.05,,S
497
+ 496,0,3,"Yousseff, Mr. Gerious",male,,0,0,2627,14.4583,,C
498
+ 497,1,1,"Eustis, Miss. Elizabeth Mussey",female,54,1,0,36947,78.2667,D20,C
499
+ 498,0,3,"Shellard, Mr. Frederick William",male,,0,0,C.A. 6212,15.1,,S
500
+ 499,0,1,"Allison, Mrs. Hudson J C (Bessie Waldo Daniels)",female,25,1,2,113781,151.55,C22 C26,S
501
+ 500,0,3,"Svensson, Mr. Olof",male,24,0,0,350035,7.7958,,S
502
+ 501,0,3,"Calic, Mr. Petar",male,17,0,0,315086,8.6625,,S
503
+ 502,0,3,"Canavan, Miss. Mary",female,21,0,0,364846,7.75,,Q
504
+ 503,0,3,"O'Sullivan, Miss. Bridget Mary",female,,0,0,330909,7.6292,,Q
505
+ 504,0,3,"Laitinen, Miss. Kristina Sofia",female,37,0,0,4135,9.5875,,S
506
+ 505,1,1,"Maioni, Miss. Roberta",female,16,0,0,110152,86.5,B79,S
507
+ 506,0,1,"Penasco y Castellana, Mr. Victor de Satode",male,18,1,0,PC 17758,108.9,C65,C
508
+ 507,1,2,"Quick, Mrs. Frederick Charles (Jane Richards)",female,33,0,2,26360,26,,S
509
+ 508,1,1,"Bradley, Mr. George (""George Arthur Brayton"")",male,,0,0,111427,26.55,,S
510
+ 509,0,3,"Olsen, Mr. Henry Margido",male,28,0,0,C 4001,22.525,,S
511
+ 510,1,3,"Lang, Mr. Fang",male,26,0,0,1601,56.4958,,S
512
+ 511,1,3,"Daly, Mr. Eugene Patrick",male,29,0,0,382651,7.75,,Q
513
+ 512,0,3,"Webber, Mr. James",male,,0,0,SOTON/OQ 3101316,8.05,,S
514
+ 513,1,1,"McGough, Mr. James Robert",male,36,0,0,PC 17473,26.2875,E25,S
515
+ 514,1,1,"Rothschild, Mrs. Martin (Elizabeth L. Barrett)",female,54,1,0,PC 17603,59.4,,C
516
+ 515,0,3,"Coleff, Mr. Satio",male,24,0,0,349209,7.4958,,S
517
+ 516,0,1,"Walker, Mr. William Anderson",male,47,0,0,36967,34.0208,D46,S
518
+ 517,1,2,"Lemore, Mrs. (Amelia Milley)",female,34,0,0,C.A. 34260,10.5,F33,S
519
+ 518,0,3,"Ryan, Mr. Patrick",male,,0,0,371110,24.15,,Q
520
+ 519,1,2,"Angle, Mrs. William A (Florence ""Mary"" Agnes Hughes)",female,36,1,0,226875,26,,S
521
+ 520,0,3,"Pavlovic, Mr. Stefo",male,32,0,0,349242,7.8958,,S
522
+ 521,1,1,"Perreault, Miss. Anne",female,30,0,0,12749,93.5,B73,S
523
+ 522,0,3,"Vovk, Mr. Janko",male,22,0,0,349252,7.8958,,S
524
+ 523,0,3,"Lahoud, Mr. Sarkis",male,,0,0,2624,7.225,,C
525
+ 524,1,1,"Hippach, Mrs. Louis Albert (Ida Sophia Fischer)",female,44,0,1,111361,57.9792,B18,C
526
+ 525,0,3,"Kassem, Mr. Fared",male,,0,0,2700,7.2292,,C
527
+ 526,0,3,"Farrell, Mr. James",male,40.5,0,0,367232,7.75,,Q
528
+ 527,1,2,"Ridsdale, Miss. Lucy",female,50,0,0,W./C. 14258,10.5,,S
529
+ 528,0,1,"Farthing, Mr. John",male,,0,0,PC 17483,221.7792,C95,S
530
+ 529,0,3,"Salonen, Mr. Johan Werner",male,39,0,0,3101296,7.925,,S
531
+ 530,0,2,"Hocking, Mr. Richard George",male,23,2,1,29104,11.5,,S
532
+ 531,1,2,"Quick, Miss. Phyllis May",female,2,1,1,26360,26,,S
533
+ 532,0,3,"Toufik, Mr. Nakli",male,,0,0,2641,7.2292,,C
534
+ 533,0,3,"Elias, Mr. Joseph Jr",male,17,1,1,2690,7.2292,,C
535
+ 534,1,3,"Peter, Mrs. Catherine (Catherine Rizk)",female,,0,2,2668,22.3583,,C
536
+ 535,0,3,"Cacic, Miss. Marija",female,30,0,0,315084,8.6625,,S
537
+ 536,1,2,"Hart, Miss. Eva Miriam",female,7,0,2,F.C.C. 13529,26.25,,S
538
+ 537,0,1,"Butt, Major. Archibald Willingham",male,45,0,0,113050,26.55,B38,S
539
+ 538,1,1,"LeRoy, Miss. Bertha",female,30,0,0,PC 17761,106.425,,C
540
+ 539,0,3,"Risien, Mr. Samuel Beard",male,,0,0,364498,14.5,,S
541
+ 540,1,1,"Frolicher, Miss. Hedwig Margaritha",female,22,0,2,13568,49.5,B39,C
542
+ 541,1,1,"Crosby, Miss. Harriet R",female,36,0,2,WE/P 5735,71,B22,S
543
+ 542,0,3,"Andersson, Miss. Ingeborg Constanzia",female,9,4,2,347082,31.275,,S
544
+ 543,0,3,"Andersson, Miss. Sigrid Elisabeth",female,11,4,2,347082,31.275,,S
545
+ 544,1,2,"Beane, Mr. Edward",male,32,1,0,2908,26,,S
546
+ 545,0,1,"Douglas, Mr. Walter Donald",male,50,1,0,PC 17761,106.425,C86,C
547
+ 546,0,1,"Nicholson, Mr. Arthur Ernest",male,64,0,0,693,26,,S
548
+ 547,1,2,"Beane, Mrs. Edward (Ethel Clarke)",female,19,1,0,2908,26,,S
549
+ 548,1,2,"Padro y Manent, Mr. Julian",male,,0,0,SC/PARIS 2146,13.8625,,C
550
+ 549,0,3,"Goldsmith, Mr. Frank John",male,33,1,1,363291,20.525,,S
551
+ 550,1,2,"Davies, Master. John Morgan Jr",male,8,1,1,C.A. 33112,36.75,,S
552
+ 551,1,1,"Thayer, Mr. John Borland Jr",male,17,0,2,17421,110.8833,C70,C
553
+ 552,0,2,"Sharp, Mr. Percival James R",male,27,0,0,244358,26,,S
554
+ 553,0,3,"O'Brien, Mr. Timothy",male,,0,0,330979,7.8292,,Q
555
+ 554,1,3,"Leeni, Mr. Fahim (""Philip Zenni"")",male,22,0,0,2620,7.225,,C
556
+ 555,1,3,"Ohman, Miss. Velin",female,22,0,0,347085,7.775,,S
557
+ 556,0,1,"Wright, Mr. George",male,62,0,0,113807,26.55,,S
558
+ 557,1,1,"Duff Gordon, Lady. (Lucille Christiana Sutherland) (""Mrs Morgan"")",female,48,1,0,11755,39.6,A16,C
559
+ 558,0,1,"Robbins, Mr. Victor",male,,0,0,PC 17757,227.525,,C
560
+ 559,1,1,"Taussig, Mrs. Emil (Tillie Mandelbaum)",female,39,1,1,110413,79.65,E67,S
561
+ 560,1,3,"de Messemaeker, Mrs. Guillaume Joseph (Emma)",female,36,1,0,345572,17.4,,S
562
+ 561,0,3,"Morrow, Mr. Thomas Rowan",male,,0,0,372622,7.75,,Q
563
+ 562,0,3,"Sivic, Mr. Husein",male,40,0,0,349251,7.8958,,S
564
+ 563,0,2,"Norman, Mr. Robert Douglas",male,28,0,0,218629,13.5,,S
565
+ 564,0,3,"Simmons, Mr. John",male,,0,0,SOTON/OQ 392082,8.05,,S
566
+ 565,0,3,"Meanwell, Miss. (Marion Ogden)",female,,0,0,SOTON/O.Q. 392087,8.05,,S
567
+ 566,0,3,"Davies, Mr. Alfred J",male,24,2,0,A/4 48871,24.15,,S
568
+ 567,0,3,"Stoytcheff, Mr. Ilia",male,19,0,0,349205,7.8958,,S
569
+ 568,0,3,"Palsson, Mrs. Nils (Alma Cornelia Berglund)",female,29,0,4,349909,21.075,,S
570
+ 569,0,3,"Doharr, Mr. Tannous",male,,0,0,2686,7.2292,,C
571
+ 570,1,3,"Jonsson, Mr. Carl",male,32,0,0,350417,7.8542,,S
572
+ 571,1,2,"Harris, Mr. George",male,62,0,0,S.W./PP 752,10.5,,S
573
+ 572,1,1,"Appleton, Mrs. Edward Dale (Charlotte Lamson)",female,53,2,0,11769,51.4792,C101,S
574
+ 573,1,1,"Flynn, Mr. John Irwin (""Irving"")",male,36,0,0,PC 17474,26.3875,E25,S
575
+ 574,1,3,"Kelly, Miss. Mary",female,,0,0,14312,7.75,,Q
576
+ 575,0,3,"Rush, Mr. Alfred George John",male,16,0,0,A/4. 20589,8.05,,S
577
+ 576,0,3,"Patchett, Mr. George",male,19,0,0,358585,14.5,,S
578
+ 577,1,2,"Garside, Miss. Ethel",female,34,0,0,243880,13,,S
579
+ 578,1,1,"Silvey, Mrs. William Baird (Alice Munger)",female,39,1,0,13507,55.9,E44,S
580
+ 579,0,3,"Caram, Mrs. Joseph (Maria Elias)",female,,1,0,2689,14.4583,,C
581
+ 580,1,3,"Jussila, Mr. Eiriik",male,32,0,0,STON/O 2. 3101286,7.925,,S
582
+ 581,1,2,"Christy, Miss. Julie Rachel",female,25,1,1,237789,30,,S
583
+ 582,1,1,"Thayer, Mrs. John Borland (Marian Longstreth Morris)",female,39,1,1,17421,110.8833,C68,C
584
+ 583,0,2,"Downton, Mr. William James",male,54,0,0,28403,26,,S
585
+ 584,0,1,"Ross, Mr. John Hugo",male,36,0,0,13049,40.125,A10,C
586
+ 585,0,3,"Paulner, Mr. Uscher",male,,0,0,3411,8.7125,,C
587
+ 586,1,1,"Taussig, Miss. Ruth",female,18,0,2,110413,79.65,E68,S
588
+ 587,0,2,"Jarvis, Mr. John Denzil",male,47,0,0,237565,15,,S
589
+ 588,1,1,"Frolicher-Stehli, Mr. Maxmillian",male,60,1,1,13567,79.2,B41,C
590
+ 589,0,3,"Gilinski, Mr. Eliezer",male,22,0,0,14973,8.05,,S
591
+ 590,0,3,"Murdlin, Mr. Joseph",male,,0,0,A./5. 3235,8.05,,S
592
+ 591,0,3,"Rintamaki, Mr. Matti",male,35,0,0,STON/O 2. 3101273,7.125,,S
593
+ 592,1,1,"Stephenson, Mrs. Walter Bertram (Martha Eustis)",female,52,1,0,36947,78.2667,D20,C
594
+ 593,0,3,"Elsbury, Mr. William James",male,47,0,0,A/5 3902,7.25,,S
595
+ 594,0,3,"Bourke, Miss. Mary",female,,0,2,364848,7.75,,Q
596
+ 595,0,2,"Chapman, Mr. John Henry",male,37,1,0,SC/AH 29037,26,,S
597
+ 596,0,3,"Van Impe, Mr. Jean Baptiste",male,36,1,1,345773,24.15,,S
598
+ 597,1,2,"Leitch, Miss. Jessie Wills",female,,0,0,248727,33,,S
599
+ 598,0,3,"Johnson, Mr. Alfred",male,49,0,0,LINE,0,,S
600
+ 599,0,3,"Boulos, Mr. Hanna",male,,0,0,2664,7.225,,C
601
+ 600,1,1,"Duff Gordon, Sir. Cosmo Edmund (""Mr Morgan"")",male,49,1,0,PC 17485,56.9292,A20,C
602
+ 601,1,2,"Jacobsohn, Mrs. Sidney Samuel (Amy Frances Christy)",female,24,2,1,243847,27,,S
603
+ 602,0,3,"Slabenoff, Mr. Petco",male,,0,0,349214,7.8958,,S
604
+ 603,0,1,"Harrington, Mr. Charles H",male,,0,0,113796,42.4,,S
605
+ 604,0,3,"Torber, Mr. Ernst William",male,44,0,0,364511,8.05,,S
606
+ 605,1,1,"Homer, Mr. Harry (""Mr E Haven"")",male,35,0,0,111426,26.55,,C
607
+ 606,0,3,"Lindell, Mr. Edvard Bengtsson",male,36,1,0,349910,15.55,,S
608
+ 607,0,3,"Karaic, Mr. Milan",male,30,0,0,349246,7.8958,,S
609
+ 608,1,1,"Daniel, Mr. Robert Williams",male,27,0,0,113804,30.5,,S
610
+ 609,1,2,"Laroche, Mrs. Joseph (Juliette Marie Louise Lafargue)",female,22,1,2,SC/Paris 2123,41.5792,,C
611
+ 610,1,1,"Shutes, Miss. Elizabeth W",female,40,0,0,PC 17582,153.4625,C125,S
612
+ 611,0,3,"Andersson, Mrs. Anders Johan (Alfrida Konstantia Brogren)",female,39,1,5,347082,31.275,,S
613
+ 612,0,3,"Jardin, Mr. Jose Neto",male,,0,0,SOTON/O.Q. 3101305,7.05,,S
614
+ 613,1,3,"Murphy, Miss. Margaret Jane",female,,1,0,367230,15.5,,Q
615
+ 614,0,3,"Horgan, Mr. John",male,,0,0,370377,7.75,,Q
616
+ 615,0,3,"Brocklebank, Mr. William Alfred",male,35,0,0,364512,8.05,,S
617
+ 616,1,2,"Herman, Miss. Alice",female,24,1,2,220845,65,,S
618
+ 617,0,3,"Danbom, Mr. Ernst Gilbert",male,34,1,1,347080,14.4,,S
619
+ 618,0,3,"Lobb, Mrs. William Arthur (Cordelia K Stanlick)",female,26,1,0,A/5. 3336,16.1,,S
620
+ 619,1,2,"Becker, Miss. Marion Louise",female,4,2,1,230136,39,F4,S
621
+ 620,0,2,"Gavey, Mr. Lawrence",male,26,0,0,31028,10.5,,S
622
+ 621,0,3,"Yasbeck, Mr. Antoni",male,27,1,0,2659,14.4542,,C
623
+ 622,1,1,"Kimball, Mr. Edwin Nelson Jr",male,42,1,0,11753,52.5542,D19,S
624
+ 623,1,3,"Nakid, Mr. Sahid",male,20,1,1,2653,15.7417,,C
625
+ 624,0,3,"Hansen, Mr. Henry Damsgaard",male,21,0,0,350029,7.8542,,S
626
+ 625,0,3,"Bowen, Mr. David John ""Dai""",male,21,0,0,54636,16.1,,S
627
+ 626,0,1,"Sutton, Mr. Frederick",male,61,0,0,36963,32.3208,D50,S
628
+ 627,0,2,"Kirkland, Rev. Charles Leonard",male,57,0,0,219533,12.35,,Q
629
+ 628,1,1,"Longley, Miss. Gretchen Fiske",female,21,0,0,13502,77.9583,D9,S
630
+ 629,0,3,"Bostandyeff, Mr. Guentcho",male,26,0,0,349224,7.8958,,S
631
+ 630,0,3,"O'Connell, Mr. Patrick D",male,,0,0,334912,7.7333,,Q
632
+ 631,1,1,"Barkworth, Mr. Algernon Henry Wilson",male,80,0,0,27042,30,A23,S
633
+ 632,0,3,"Lundahl, Mr. Johan Svensson",male,51,0,0,347743,7.0542,,S
634
+ 633,1,1,"Stahelin-Maeglin, Dr. Max",male,32,0,0,13214,30.5,B50,C
635
+ 634,0,1,"Parr, Mr. William Henry Marsh",male,,0,0,112052,0,,S
636
+ 635,0,3,"Skoog, Miss. Mabel",female,9,3,2,347088,27.9,,S
637
+ 636,1,2,"Davis, Miss. Mary",female,28,0,0,237668,13,,S
638
+ 637,0,3,"Leinonen, Mr. Antti Gustaf",male,32,0,0,STON/O 2. 3101292,7.925,,S
639
+ 638,0,2,"Collyer, Mr. Harvey",male,31,1,1,C.A. 31921,26.25,,S
640
+ 639,0,3,"Panula, Mrs. Juha (Maria Emilia Ojala)",female,41,0,5,3101295,39.6875,,S
641
+ 640,0,3,"Thorneycroft, Mr. Percival",male,,1,0,376564,16.1,,S
642
+ 641,0,3,"Jensen, Mr. Hans Peder",male,20,0,0,350050,7.8542,,S
643
+ 642,1,1,"Sagesser, Mlle. Emma",female,24,0,0,PC 17477,69.3,B35,C
644
+ 643,0,3,"Skoog, Miss. Margit Elizabeth",female,2,3,2,347088,27.9,,S
645
+ 644,1,3,"Foo, Mr. Choong",male,,0,0,1601,56.4958,,S
646
+ 645,1,3,"Baclini, Miss. Eugenie",female,0.75,2,1,2666,19.2583,,C
647
+ 646,1,1,"Harper, Mr. Henry Sleeper",male,48,1,0,PC 17572,76.7292,D33,C
648
+ 647,0,3,"Cor, Mr. Liudevit",male,19,0,0,349231,7.8958,,S
649
+ 648,1,1,"Simonius-Blumer, Col. Oberst Alfons",male,56,0,0,13213,35.5,A26,C
650
+ 649,0,3,"Willey, Mr. Edward",male,,0,0,S.O./P.P. 751,7.55,,S
651
+ 650,1,3,"Stanley, Miss. Amy Zillah Elsie",female,23,0,0,CA. 2314,7.55,,S
652
+ 651,0,3,"Mitkoff, Mr. Mito",male,,0,0,349221,7.8958,,S
653
+ 652,1,2,"Doling, Miss. Elsie",female,18,0,1,231919,23,,S
654
+ 653,0,3,"Kalvik, Mr. Johannes Halvorsen",male,21,0,0,8475,8.4333,,S
655
+ 654,1,3,"O'Leary, Miss. Hanora ""Norah""",female,,0,0,330919,7.8292,,Q
656
+ 655,0,3,"Hegarty, Miss. Hanora ""Nora""",female,18,0,0,365226,6.75,,Q
657
+ 656,0,2,"Hickman, Mr. Leonard Mark",male,24,2,0,S.O.C. 14879,73.5,,S
658
+ 657,0,3,"Radeff, Mr. Alexander",male,,0,0,349223,7.8958,,S
659
+ 658,0,3,"Bourke, Mrs. John (Catherine)",female,32,1,1,364849,15.5,,Q
660
+ 659,0,2,"Eitemiller, Mr. George Floyd",male,23,0,0,29751,13,,S
661
+ 660,0,1,"Newell, Mr. Arthur Webster",male,58,0,2,35273,113.275,D48,C
662
+ 661,1,1,"Frauenthal, Dr. Henry William",male,50,2,0,PC 17611,133.65,,S
663
+ 662,0,3,"Badt, Mr. Mohamed",male,40,0,0,2623,7.225,,C
664
+ 663,0,1,"Colley, Mr. Edward Pomeroy",male,47,0,0,5727,25.5875,E58,S
665
+ 664,0,3,"Coleff, Mr. Peju",male,36,0,0,349210,7.4958,,S
666
+ 665,1,3,"Lindqvist, Mr. Eino William",male,20,1,0,STON/O 2. 3101285,7.925,,S
667
+ 666,0,2,"Hickman, Mr. Lewis",male,32,2,0,S.O.C. 14879,73.5,,S
668
+ 667,0,2,"Butler, Mr. Reginald Fenton",male,25,0,0,234686,13,,S
669
+ 668,0,3,"Rommetvedt, Mr. Knud Paust",male,,0,0,312993,7.775,,S
670
+ 669,0,3,"Cook, Mr. Jacob",male,43,0,0,A/5 3536,8.05,,S
671
+ 670,1,1,"Taylor, Mrs. Elmer Zebley (Juliet Cummins Wright)",female,,1,0,19996,52,C126,S
672
+ 671,1,2,"Brown, Mrs. Thomas William Solomon (Elizabeth Catherine Ford)",female,40,1,1,29750,39,,S
673
+ 672,0,1,"Davidson, Mr. Thornton",male,31,1,0,F.C. 12750,52,B71,S
674
+ 673,0,2,"Mitchell, Mr. Henry Michael",male,70,0,0,C.A. 24580,10.5,,S
675
+ 674,1,2,"Wilhelms, Mr. Charles",male,31,0,0,244270,13,,S
676
+ 675,0,2,"Watson, Mr. Ennis Hastings",male,,0,0,239856,0,,S
677
+ 676,0,3,"Edvardsson, Mr. Gustaf Hjalmar",male,18,0,0,349912,7.775,,S
678
+ 677,0,3,"Sawyer, Mr. Frederick Charles",male,24.5,0,0,342826,8.05,,S
679
+ 678,1,3,"Turja, Miss. Anna Sofia",female,18,0,0,4138,9.8417,,S
680
+ 679,0,3,"Goodwin, Mrs. Frederick (Augusta Tyler)",female,43,1,6,CA 2144,46.9,,S
681
+ 680,1,1,"Cardeza, Mr. Thomas Drake Martinez",male,36,0,1,PC 17755,512.3292,B51 B53 B55,C
682
+ 681,0,3,"Peters, Miss. Katie",female,,0,0,330935,8.1375,,Q
683
+ 682,1,1,"Hassab, Mr. Hammad",male,27,0,0,PC 17572,76.7292,D49,C
684
+ 683,0,3,"Olsvigen, Mr. Thor Anderson",male,20,0,0,6563,9.225,,S
685
+ 684,0,3,"Goodwin, Mr. Charles Edward",male,14,5,2,CA 2144,46.9,,S
686
+ 685,0,2,"Brown, Mr. Thomas William Solomon",male,60,1,1,29750,39,,S
687
+ 686,0,2,"Laroche, Mr. Joseph Philippe Lemercier",male,25,1,2,SC/Paris 2123,41.5792,,C
688
+ 687,0,3,"Panula, Mr. Jaako Arnold",male,14,4,1,3101295,39.6875,,S
689
+ 688,0,3,"Dakic, Mr. Branko",male,19,0,0,349228,10.1708,,S
690
+ 689,0,3,"Fischer, Mr. Eberhard Thelander",male,18,0,0,350036,7.7958,,S
691
+ 690,1,1,"Madill, Miss. Georgette Alexandra",female,15,0,1,24160,211.3375,B5,S
692
+ 691,1,1,"Dick, Mr. Albert Adrian",male,31,1,0,17474,57,B20,S
693
+ 692,1,3,"Karun, Miss. Manca",female,4,0,1,349256,13.4167,,C
694
+ 693,1,3,"Lam, Mr. Ali",male,,0,0,1601,56.4958,,S
695
+ 694,0,3,"Saad, Mr. Khalil",male,25,0,0,2672,7.225,,C
696
+ 695,0,1,"Weir, Col. John",male,60,0,0,113800,26.55,,S
697
+ 696,0,2,"Chapman, Mr. Charles Henry",male,52,0,0,248731,13.5,,S
698
+ 697,0,3,"Kelly, Mr. James",male,44,0,0,363592,8.05,,S
699
+ 698,1,3,"Mullens, Miss. Katherine ""Katie""",female,,0,0,35852,7.7333,,Q
700
+ 699,0,1,"Thayer, Mr. John Borland",male,49,1,1,17421,110.8833,C68,C
701
+ 700,0,3,"Humblen, Mr. Adolf Mathias Nicolai Olsen",male,42,0,0,348121,7.65,F G63,S
702
+ 701,1,1,"Astor, Mrs. John Jacob (Madeleine Talmadge Force)",female,18,1,0,PC 17757,227.525,C62 C64,C
703
+ 702,1,1,"Silverthorne, Mr. Spencer Victor",male,35,0,0,PC 17475,26.2875,E24,S
704
+ 703,0,3,"Barbara, Miss. Saiide",female,18,0,1,2691,14.4542,,C
705
+ 704,0,3,"Gallagher, Mr. Martin",male,25,0,0,36864,7.7417,,Q
706
+ 705,0,3,"Hansen, Mr. Henrik Juul",male,26,1,0,350025,7.8542,,S
707
+ 706,0,2,"Morley, Mr. Henry Samuel (""Mr Henry Marshall"")",male,39,0,0,250655,26,,S
708
+ 707,1,2,"Kelly, Mrs. Florence ""Fannie""",female,45,0,0,223596,13.5,,S
709
+ 708,1,1,"Calderhead, Mr. Edward Pennington",male,42,0,0,PC 17476,26.2875,E24,S
710
+ 709,1,1,"Cleaver, Miss. Alice",female,22,0,0,113781,151.55,,S
711
+ 710,1,3,"Moubarek, Master. Halim Gonios (""William George"")",male,,1,1,2661,15.2458,,C
712
+ 711,1,1,"Mayne, Mlle. Berthe Antonine (""Mrs de Villiers"")",female,24,0,0,PC 17482,49.5042,C90,C
713
+ 712,0,1,"Klaber, Mr. Herman",male,,0,0,113028,26.55,C124,S
714
+ 713,1,1,"Taylor, Mr. Elmer Zebley",male,48,1,0,19996,52,C126,S
715
+ 714,0,3,"Larsson, Mr. August Viktor",male,29,0,0,7545,9.4833,,S
716
+ 715,0,2,"Greenberg, Mr. Samuel",male,52,0,0,250647,13,,S
717
+ 716,0,3,"Soholt, Mr. Peter Andreas Lauritz Andersen",male,19,0,0,348124,7.65,F G73,S
718
+ 717,1,1,"Endres, Miss. Caroline Louise",female,38,0,0,PC 17757,227.525,C45,C
719
+ 718,1,2,"Troutt, Miss. Edwina Celia ""Winnie""",female,27,0,0,34218,10.5,E101,S
720
+ 719,0,3,"McEvoy, Mr. Michael",male,,0,0,36568,15.5,,Q
721
+ 720,0,3,"Johnson, Mr. Malkolm Joackim",male,33,0,0,347062,7.775,,S
722
+ 721,1,2,"Harper, Miss. Annie Jessie ""Nina""",female,6,0,1,248727,33,,S
723
+ 722,0,3,"Jensen, Mr. Svend Lauritz",male,17,1,0,350048,7.0542,,S
724
+ 723,0,2,"Gillespie, Mr. William Henry",male,34,0,0,12233,13,,S
725
+ 724,0,2,"Hodges, Mr. Henry Price",male,50,0,0,250643,13,,S
726
+ 725,1,1,"Chambers, Mr. Norman Campbell",male,27,1,0,113806,53.1,E8,S
727
+ 726,0,3,"Oreskovic, Mr. Luka",male,20,0,0,315094,8.6625,,S
728
+ 727,1,2,"Renouf, Mrs. Peter Henry (Lillian Jefferys)",female,30,3,0,31027,21,,S
729
+ 728,1,3,"Mannion, Miss. Margareth",female,,0,0,36866,7.7375,,Q
730
+ 729,0,2,"Bryhl, Mr. Kurt Arnold Gottfrid",male,25,1,0,236853,26,,S
731
+ 730,0,3,"Ilmakangas, Miss. Pieta Sofia",female,25,1,0,STON/O2. 3101271,7.925,,S
732
+ 731,1,1,"Allen, Miss. Elisabeth Walton",female,29,0,0,24160,211.3375,B5,S
733
+ 732,0,3,"Hassan, Mr. Houssein G N",male,11,0,0,2699,18.7875,,C
734
+ 733,0,2,"Knight, Mr. Robert J",male,,0,0,239855,0,,S
735
+ 734,0,2,"Berriman, Mr. William John",male,23,0,0,28425,13,,S
736
+ 735,0,2,"Troupiansky, Mr. Moses Aaron",male,23,0,0,233639,13,,S
737
+ 736,0,3,"Williams, Mr. Leslie",male,28.5,0,0,54636,16.1,,S
738
+ 737,0,3,"Ford, Mrs. Edward (Margaret Ann Watson)",female,48,1,3,W./C. 6608,34.375,,S
739
+ 738,1,1,"Lesurer, Mr. Gustave J",male,35,0,0,PC 17755,512.3292,B101,C
740
+ 739,0,3,"Ivanoff, Mr. Kanio",male,,0,0,349201,7.8958,,S
741
+ 740,0,3,"Nankoff, Mr. Minko",male,,0,0,349218,7.8958,,S
742
+ 741,1,1,"Hawksford, Mr. Walter James",male,,0,0,16988,30,D45,S
743
+ 742,0,1,"Cavendish, Mr. Tyrell William",male,36,1,0,19877,78.85,C46,S
744
+ 743,1,1,"Ryerson, Miss. Susan Parker ""Suzette""",female,21,2,2,PC 17608,262.375,B57 B59 B63 B66,C
745
+ 744,0,3,"McNamee, Mr. Neal",male,24,1,0,376566,16.1,,S
746
+ 745,1,3,"Stranden, Mr. Juho",male,31,0,0,STON/O 2. 3101288,7.925,,S
747
+ 746,0,1,"Crosby, Capt. Edward Gifford",male,70,1,1,WE/P 5735,71,B22,S
748
+ 747,0,3,"Abbott, Mr. Rossmore Edward",male,16,1,1,C.A. 2673,20.25,,S
749
+ 748,1,2,"Sinkkonen, Miss. Anna",female,30,0,0,250648,13,,S
750
+ 749,0,1,"Marvin, Mr. Daniel Warner",male,19,1,0,113773,53.1,D30,S
751
+ 750,0,3,"Connaghton, Mr. Michael",male,31,0,0,335097,7.75,,Q
752
+ 751,1,2,"Wells, Miss. Joan",female,4,1,1,29103,23,,S
753
+ 752,1,3,"Moor, Master. Meier",male,6,0,1,392096,12.475,E121,S
754
+ 753,0,3,"Vande Velde, Mr. Johannes Joseph",male,33,0,0,345780,9.5,,S
755
+ 754,0,3,"Jonkoff, Mr. Lalio",male,23,0,0,349204,7.8958,,S
756
+ 755,1,2,"Herman, Mrs. Samuel (Jane Laver)",female,48,1,2,220845,65,,S
757
+ 756,1,2,"Hamalainen, Master. Viljo",male,0.67,1,1,250649,14.5,,S
758
+ 757,0,3,"Carlsson, Mr. August Sigfrid",male,28,0,0,350042,7.7958,,S
759
+ 758,0,2,"Bailey, Mr. Percy Andrew",male,18,0,0,29108,11.5,,S
760
+ 759,0,3,"Theobald, Mr. Thomas Leonard",male,34,0,0,363294,8.05,,S
761
+ 760,1,1,"Rothes, the Countess. of (Lucy Noel Martha Dyer-Edwards)",female,33,0,0,110152,86.5,B77,S
762
+ 761,0,3,"Garfirth, Mr. John",male,,0,0,358585,14.5,,S
763
+ 762,0,3,"Nirva, Mr. Iisakki Antino Aijo",male,41,0,0,SOTON/O2 3101272,7.125,,S
764
+ 763,1,3,"Barah, Mr. Hanna Assi",male,20,0,0,2663,7.2292,,C
765
+ 764,1,1,"Carter, Mrs. William Ernest (Lucile Polk)",female,36,1,2,113760,120,B96 B98,S
766
+ 765,0,3,"Eklund, Mr. Hans Linus",male,16,0,0,347074,7.775,,S
767
+ 766,1,1,"Hogeboom, Mrs. John C (Anna Andrews)",female,51,1,0,13502,77.9583,D11,S
768
+ 767,0,1,"Brewe, Dr. Arthur Jackson",male,,0,0,112379,39.6,,C
769
+ 768,0,3,"Mangan, Miss. Mary",female,30.5,0,0,364850,7.75,,Q
770
+ 769,0,3,"Moran, Mr. Daniel J",male,,1,0,371110,24.15,,Q
771
+ 770,0,3,"Gronnestad, Mr. Daniel Danielsen",male,32,0,0,8471,8.3625,,S
772
+ 771,0,3,"Lievens, Mr. Rene Aime",male,24,0,0,345781,9.5,,S
773
+ 772,0,3,"Jensen, Mr. Niels Peder",male,48,0,0,350047,7.8542,,S
774
+ 773,0,2,"Mack, Mrs. (Mary)",female,57,0,0,S.O./P.P. 3,10.5,E77,S
775
+ 774,0,3,"Elias, Mr. Dibo",male,,0,0,2674,7.225,,C
776
+ 775,1,2,"Hocking, Mrs. Elizabeth (Eliza Needs)",female,54,1,3,29105,23,,S
777
+ 776,0,3,"Myhrman, Mr. Pehr Fabian Oliver Malkolm",male,18,0,0,347078,7.75,,S
778
+ 777,0,3,"Tobin, Mr. Roger",male,,0,0,383121,7.75,F38,Q
779
+ 778,1,3,"Emanuel, Miss. Virginia Ethel",female,5,0,0,364516,12.475,,S
780
+ 779,0,3,"Kilgannon, Mr. Thomas J",male,,0,0,36865,7.7375,,Q
781
+ 780,1,1,"Robert, Mrs. Edward Scott (Elisabeth Walton McMillan)",female,43,0,1,24160,211.3375,B3,S
782
+ 781,1,3,"Ayoub, Miss. Banoura",female,13,0,0,2687,7.2292,,C
783
+ 782,1,1,"Dick, Mrs. Albert Adrian (Vera Gillespie)",female,17,1,0,17474,57,B20,S
784
+ 783,0,1,"Long, Mr. Milton Clyde",male,29,0,0,113501,30,D6,S
785
+ 784,0,3,"Johnston, Mr. Andrew G",male,,1,2,W./C. 6607,23.45,,S
786
+ 785,0,3,"Ali, Mr. William",male,25,0,0,SOTON/O.Q. 3101312,7.05,,S
787
+ 786,0,3,"Harmer, Mr. Abraham (David Lishin)",male,25,0,0,374887,7.25,,S
788
+ 787,1,3,"Sjoblom, Miss. Anna Sofia",female,18,0,0,3101265,7.4958,,S
789
+ 788,0,3,"Rice, Master. George Hugh",male,8,4,1,382652,29.125,,Q
790
+ 789,1,3,"Dean, Master. Bertram Vere",male,1,1,2,C.A. 2315,20.575,,S
791
+ 790,0,1,"Guggenheim, Mr. Benjamin",male,46,0,0,PC 17593,79.2,B82 B84,C
792
+ 791,0,3,"Keane, Mr. Andrew ""Andy""",male,,0,0,12460,7.75,,Q
793
+ 792,0,2,"Gaskell, Mr. Alfred",male,16,0,0,239865,26,,S
794
+ 793,0,3,"Sage, Miss. Stella Anna",female,,8,2,CA. 2343,69.55,,S
795
+ 794,0,1,"Hoyt, Mr. William Fisher",male,,0,0,PC 17600,30.6958,,C
796
+ 795,0,3,"Dantcheff, Mr. Ristiu",male,25,0,0,349203,7.8958,,S
797
+ 796,0,2,"Otter, Mr. Richard",male,39,0,0,28213,13,,S
798
+ 797,1,1,"Leader, Dr. Alice (Farnham)",female,49,0,0,17465,25.9292,D17,S
799
+ 798,1,3,"Osman, Mrs. Mara",female,31,0,0,349244,8.6833,,S
800
+ 799,0,3,"Ibrahim Shawah, Mr. Yousseff",male,30,0,0,2685,7.2292,,C
801
+ 800,0,3,"Van Impe, Mrs. Jean Baptiste (Rosalie Paula Govaert)",female,30,1,1,345773,24.15,,S
802
+ 801,0,2,"Ponesell, Mr. Martin",male,34,0,0,250647,13,,S
803
+ 802,1,2,"Collyer, Mrs. Harvey (Charlotte Annie Tate)",female,31,1,1,C.A. 31921,26.25,,S
804
+ 803,1,1,"Carter, Master. William Thornton II",male,11,1,2,113760,120,B96 B98,S
805
+ 804,1,3,"Thomas, Master. Assad Alexander",male,0.42,0,1,2625,8.5167,,C
806
+ 805,1,3,"Hedman, Mr. Oskar Arvid",male,27,0,0,347089,6.975,,S
807
+ 806,0,3,"Johansson, Mr. Karl Johan",male,31,0,0,347063,7.775,,S
808
+ 807,0,1,"Andrews, Mr. Thomas Jr",male,39,0,0,112050,0,A36,S
809
+ 808,0,3,"Pettersson, Miss. Ellen Natalia",female,18,0,0,347087,7.775,,S
810
+ 809,0,2,"Meyer, Mr. August",male,39,0,0,248723,13,,S
811
+ 810,1,1,"Chambers, Mrs. Norman Campbell (Bertha Griggs)",female,33,1,0,113806,53.1,E8,S
812
+ 811,0,3,"Alexander, Mr. William",male,26,0,0,3474,7.8875,,S
813
+ 812,0,3,"Lester, Mr. James",male,39,0,0,A/4 48871,24.15,,S
814
+ 813,0,2,"Slemen, Mr. Richard James",male,35,0,0,28206,10.5,,S
815
+ 814,0,3,"Andersson, Miss. Ebba Iris Alfrida",female,6,4,2,347082,31.275,,S
816
+ 815,0,3,"Tomlin, Mr. Ernest Portage",male,30.5,0,0,364499,8.05,,S
817
+ 816,0,1,"Fry, Mr. Richard",male,,0,0,112058,0,B102,S
818
+ 817,0,3,"Heininen, Miss. Wendla Maria",female,23,0,0,STON/O2. 3101290,7.925,,S
819
+ 818,0,2,"Mallet, Mr. Albert",male,31,1,1,S.C./PARIS 2079,37.0042,,C
820
+ 819,0,3,"Holm, Mr. John Fredrik Alexander",male,43,0,0,C 7075,6.45,,S
821
+ 820,0,3,"Skoog, Master. Karl Thorsten",male,10,3,2,347088,27.9,,S
822
+ 821,1,1,"Hays, Mrs. Charles Melville (Clara Jennings Gregg)",female,52,1,1,12749,93.5,B69,S
823
+ 822,1,3,"Lulic, Mr. Nikola",male,27,0,0,315098,8.6625,,S
824
+ 823,0,1,"Reuchlin, Jonkheer. John George",male,38,0,0,19972,0,,S
825
+ 824,1,3,"Moor, Mrs. (Beila)",female,27,0,1,392096,12.475,E121,S
826
+ 825,0,3,"Panula, Master. Urho Abraham",male,2,4,1,3101295,39.6875,,S
827
+ 826,0,3,"Flynn, Mr. John",male,,0,0,368323,6.95,,Q
828
+ 827,0,3,"Lam, Mr. Len",male,,0,0,1601,56.4958,,S
829
+ 828,1,2,"Mallet, Master. Andre",male,1,0,2,S.C./PARIS 2079,37.0042,,C
830
+ 829,1,3,"McCormack, Mr. Thomas Joseph",male,,0,0,367228,7.75,,Q
831
+ 830,1,1,"Stone, Mrs. George Nelson (Martha Evelyn)",female,62,0,0,113572,80,B28,
832
+ 831,1,3,"Yasbeck, Mrs. Antoni (Selini Alexander)",female,15,1,0,2659,14.4542,,C
833
+ 832,1,2,"Richards, Master. George Sibley",male,0.83,1,1,29106,18.75,,S
834
+ 833,0,3,"Saad, Mr. Amin",male,,0,0,2671,7.2292,,C
835
+ 834,0,3,"Augustsson, Mr. Albert",male,23,0,0,347468,7.8542,,S
836
+ 835,0,3,"Allum, Mr. Owen George",male,18,0,0,2223,8.3,,S
837
+ 836,1,1,"Compton, Miss. Sara Rebecca",female,39,1,1,PC 17756,83.1583,E49,C
838
+ 837,0,3,"Pasic, Mr. Jakob",male,21,0,0,315097,8.6625,,S
839
+ 838,0,3,"Sirota, Mr. Maurice",male,,0,0,392092,8.05,,S
840
+ 839,1,3,"Chip, Mr. Chang",male,32,0,0,1601,56.4958,,S
841
+ 840,1,1,"Marechal, Mr. Pierre",male,,0,0,11774,29.7,C47,C
842
+ 841,0,3,"Alhomaki, Mr. Ilmari Rudolf",male,20,0,0,SOTON/O2 3101287,7.925,,S
843
+ 842,0,2,"Mudd, Mr. Thomas Charles",male,16,0,0,S.O./P.P. 3,10.5,,S
844
+ 843,1,1,"Serepeca, Miss. Augusta",female,30,0,0,113798,31,,C
845
+ 844,0,3,"Lemberopolous, Mr. Peter L",male,34.5,0,0,2683,6.4375,,C
846
+ 845,0,3,"Culumovic, Mr. Jeso",male,17,0,0,315090,8.6625,,S
847
+ 846,0,3,"Abbing, Mr. Anthony",male,42,0,0,C.A. 5547,7.55,,S
848
+ 847,0,3,"Sage, Mr. Douglas Bullen",male,,8,2,CA. 2343,69.55,,S
849
+ 848,0,3,"Markoff, Mr. Marin",male,35,0,0,349213,7.8958,,C
850
+ 849,0,2,"Harper, Rev. John",male,28,0,1,248727,33,,S
851
+ 850,1,1,"Goldenberg, Mrs. Samuel L (Edwiga Grabowska)",female,,1,0,17453,89.1042,C92,C
852
+ 851,0,3,"Andersson, Master. Sigvard Harald Elias",male,4,4,2,347082,31.275,,S
853
+ 852,0,3,"Svensson, Mr. Johan",male,74,0,0,347060,7.775,,S
854
+ 853,0,3,"Boulos, Miss. Nourelain",female,9,1,1,2678,15.2458,,C
855
+ 854,1,1,"Lines, Miss. Mary Conover",female,16,0,1,PC 17592,39.4,D28,S
856
+ 855,0,2,"Carter, Mrs. Ernest Courtenay (Lilian Hughes)",female,44,1,0,244252,26,,S
857
+ 856,1,3,"Aks, Mrs. Sam (Leah Rosen)",female,18,0,1,392091,9.35,,S
858
+ 857,1,1,"Wick, Mrs. George Dennick (Mary Hitchcock)",female,45,1,1,36928,164.8667,,S
859
+ 858,1,1,"Daly, Mr. Peter Denis ",male,51,0,0,113055,26.55,E17,S
860
+ 859,1,3,"Baclini, Mrs. Solomon (Latifa Qurban)",female,24,0,3,2666,19.2583,,C
861
+ 860,0,3,"Razi, Mr. Raihed",male,,0,0,2629,7.2292,,C
862
+ 861,0,3,"Hansen, Mr. Claus Peter",male,41,2,0,350026,14.1083,,S
863
+ 862,0,2,"Giles, Mr. Frederick Edward",male,21,1,0,28134,11.5,,S
864
+ 863,1,1,"Swift, Mrs. Frederick Joel (Margaret Welles Barron)",female,48,0,0,17466,25.9292,D17,S
865
+ 864,0,3,"Sage, Miss. Dorothy Edith ""Dolly""",female,,8,2,CA. 2343,69.55,,S
866
+ 865,0,2,"Gill, Mr. John William",male,24,0,0,233866,13,,S
867
+ 866,1,2,"Bystrom, Mrs. (Karolina)",female,42,0,0,236852,13,,S
868
+ 867,1,2,"Duran y More, Miss. Asuncion",female,27,1,0,SC/PARIS 2149,13.8583,,C
869
+ 868,0,1,"Roebling, Mr. Washington Augustus II",male,31,0,0,PC 17590,50.4958,A24,S
870
+ 869,0,3,"van Melkebeke, Mr. Philemon",male,,0,0,345777,9.5,,S
871
+ 870,1,3,"Johnson, Master. Harold Theodor",male,4,1,1,347742,11.1333,,S
872
+ 871,0,3,"Balkic, Mr. Cerin",male,26,0,0,349248,7.8958,,S
873
+ 872,1,1,"Beckwith, Mrs. Richard Leonard (Sallie Monypeny)",female,47,1,1,11751,52.5542,D35,S
874
+ 873,0,1,"Carlsson, Mr. Frans Olof",male,33,0,0,695,5,B51 B53 B55,S
875
+ 874,0,3,"Vander Cruyssen, Mr. Victor",male,47,0,0,345765,9,,S
876
+ 875,1,2,"Abelson, Mrs. Samuel (Hannah Wizosky)",female,28,1,0,P/PP 3381,24,,C
877
+ 876,1,3,"Najib, Miss. Adele Kiamie ""Jane""",female,15,0,0,2667,7.225,,C
878
+ 877,0,3,"Gustafsson, Mr. Alfred Ossian",male,20,0,0,7534,9.8458,,S
879
+ 878,0,3,"Petroff, Mr. Nedelio",male,19,0,0,349212,7.8958,,S
880
+ 879,0,3,"Laleff, Mr. Kristo",male,,0,0,349217,7.8958,,S
881
+ 880,1,1,"Potter, Mrs. Thomas Jr (Lily Alexenia Wilson)",female,56,0,1,11767,83.1583,C50,C
882
+ 881,1,2,"Shelley, Mrs. William (Imanita Parrish Hall)",female,25,0,1,230433,26,,S
883
+ 882,0,3,"Markun, Mr. Johann",male,33,0,0,349257,7.8958,,S
884
+ 883,0,3,"Dahlberg, Miss. Gerda Ulrika",female,22,0,0,7552,10.5167,,S
885
+ 884,0,2,"Banfield, Mr. Frederick James",male,28,0,0,C.A./SOTON 34068,10.5,,S
886
+ 885,0,3,"Sutehall, Mr. Henry Jr",male,25,0,0,SOTON/OQ 392076,7.05,,S
887
+ 886,0,3,"Rice, Mrs. William (Margaret Norton)",female,39,0,5,382652,29.125,,Q
888
+ 887,0,2,"Montvila, Rev. Juozas",male,27,0,0,211536,13,,S
889
+ 888,1,1,"Graham, Miss. Margaret Edith",female,19,0,0,112053,30,B42,S
890
+ 889,0,3,"Johnston, Miss. Catherine Helen ""Carrie""",female,,1,2,W./C. 6607,23.45,,S
891
+ 890,1,1,"Behr, Mr. Karl Howell",male,26,0,0,111369,30,C148,C
892
+ 891,0,3,"Dooley, Mr. Patrick",male,32,0,0,370376,7.75,,Q
demos/kitchen_sink/files/tower.jpg ADDED
demos/kitchen_sink/files/world.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71944d7430c461f0cd6e7fd10cee7eb72786352a3678fc7bc0ae3d410f72aece
3
+ size 1570024
demos/kitchen_sink/requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ numpy
demos/kitchen_sink/run.ipynb ADDED
@@ -0,0 +1 @@
 
 
1
+ {"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: kitchen_sink"]}, {"cell_type": "code", "execution_count": null, "id": "272996653310673477252411125948039410165", "metadata": {}, "outputs": [], "source": ["!pip install -q gradio numpy "]}, {"cell_type": "code", "execution_count": null, "id": "288918539441861185822528903084949547379", "metadata": {}, "outputs": [], "source": ["# Downloading files from the demo repo\n", "import os\n", "os.mkdir('files')\n", "!wget -q -O files/cantina.wav https://github.com/gradio-app/gradio/raw/main/demo/kitchen_sink/files/cantina.wav\n", "!wget -q -O files/cheetah1.jpg https://github.com/gradio-app/gradio/raw/main/demo/kitchen_sink/files/cheetah1.jpg\n", "!wget -q -O files/lion.jpg https://github.com/gradio-app/gradio/raw/main/demo/kitchen_sink/files/lion.jpg\n", "!wget -q -O files/logo.png https://github.com/gradio-app/gradio/raw/main/demo/kitchen_sink/files/logo.png\n", "!wget -q -O files/time.csv https://github.com/gradio-app/gradio/raw/main/demo/kitchen_sink/files/time.csv\n", "!wget -q -O files/titanic.csv https://github.com/gradio-app/gradio/raw/main/demo/kitchen_sink/files/titanic.csv\n", "!wget -q -O files/tower.jpg https://github.com/gradio-app/gradio/raw/main/demo/kitchen_sink/files/tower.jpg\n", "!wget -q -O files/world.mp4 https://github.com/gradio-app/gradio/raw/main/demo/kitchen_sink/files/world.mp4"]}, {"cell_type": "code", "execution_count": null, "id": "44380577570523278879349135829904343037", "metadata": {}, "outputs": [], "source": ["import os\n", "import json\n", "\n", "import numpy as np\n", "\n", "import gradio as gr\n", "\n", "CHOICES = [\"foo\", \"bar\", \"baz\"]\n", "JSONOBJ = \"\"\"{\"items\":{\"item\":[{\"id\": \"0001\",\"type\": null,\"is_good\": false,\"ppu\": 0.55,\"batters\":{\"batter\":[{ \"id\": \"1001\", \"type\": \"Regular\" },{ \"id\": \"1002\", \"type\": \"Chocolate\" },{ \"id\": \"1003\", \"type\": \"Blueberry\" },{ \"id\": \"1004\", \"type\": \"Devil's Food\" }]},\"topping\":[{ \"id\": \"5001\", \"type\": \"None\" },{ \"id\": \"5002\", \"type\": \"Glazed\" },{ \"id\": \"5005\", \"type\": \"Sugar\" },{ \"id\": \"5007\", \"type\": \"Powdered Sugar\" },{ \"id\": \"5006\", \"type\": \"Chocolate with Sprinkles\" },{ \"id\": \"5003\", \"type\": \"Chocolate\" },{ \"id\": \"5004\", \"type\": \"Maple\" }]}]}}\"\"\"\n", "\n", "def fn(\n", " text1,\n", " text2,\n", " num,\n", " slider1,\n", " slider2,\n", " single_checkbox,\n", " checkboxes,\n", " radio,\n", " dropdown,\n", " multi_dropdown,\n", " im1,\n", " # im2,\n", " # im3,\n", " im4,\n", " video,\n", " audio1,\n", " audio2,\n", " file,\n", " df1,\n", "):\n", " return (\n", " (text1 if single_checkbox else text2)\n", " + \", selected:\"\n", " + \", \".join(checkboxes), # Text\n", " {\n", " \"positive\": num / (num + slider1 + slider2),\n", " \"negative\": slider1 / (num + slider1 + slider2),\n", " \"neutral\": slider2 / (num + slider1 + slider2),\n", " }, # Label\n", " (audio1[0], np.flipud(audio1[1]))\n", " if audio1 is not None\n", " else os.path.join(os.path.abspath(''), \"files/cantina.wav\"), # Audio\n", " np.flipud(im1)\n", " if im1 is not None\n", " else os.path.join(os.path.abspath(''), \"files/cheetah1.jpg\"), # Image\n", " video\n", " if video is not None\n", " else os.path.join(os.path.abspath(''), \"files/world.mp4\"), # Video\n", " [\n", " (\"The\", \"art\"),\n", " (\"quick brown\", \"adj\"),\n", " (\"fox\", \"nn\"),\n", " (\"jumped\", \"vrb\"),\n", " (\"testing testing testing\", None),\n", " (\"over\", \"prp\"),\n", " (\"the\", \"art\"),\n", " (\"testing\", None),\n", " (\"lazy\", \"adj\"),\n", " (\"dogs\", \"nn\"),\n", " (\".\", \"punc\"),\n", " ]\n", " + [(f\"test {x}\", f\"test {x}\") for x in range(10)], # HighlightedText\n", " # [(\"The testing testing testing\", None), (\"quick brown\", 0.2), (\"fox\", 1), (\"jumped\", -1), (\"testing testing testing\", 0), (\"over\", 0), (\"the\", 0), (\"testing\", 0), (\"lazy\", 1), (\"dogs\", 0), (\".\", 1)] + [(f\"test {x}\", x/10) for x in range(-10, 10)], # HighlightedText\n", " [\n", " (\"The testing testing testing\", None),\n", " (\"over\", 0.6),\n", " (\"the\", 0.2),\n", " (\"testing\", None),\n", " (\"lazy\", -0.1),\n", " (\"dogs\", 0.4),\n", " (\".\", 0),\n", " ]\n", " + [(\"test\", x / 10) for x in range(-10, 10)], # HighlightedText\n", " json.loads(JSONOBJ), # JSON\n", " \"<button style='background-color: red'>Click Me: \"\n", " + radio\n", " + \"</button>\", # HTML\n", " os.path.join(os.path.abspath(''), \"files/titanic.csv\"),\n", " df1, # Dataframe\n", " np.random.randint(0, 10, (4, 4)), # Dataframe\n", " )\n", "\n", "demo = gr.Interface(\n", " fn,\n", " inputs=[\n", " gr.Textbox(value=\"Lorem ipsum\", label=\"Textbox\"),\n", " gr.Textbox(lines=3, placeholder=\"Type here..\", label=\"Textbox 2\"),\n", " gr.Number(label=\"Number\", value=42),\n", " gr.Slider(10, 20, value=15, label=\"Slider: 10 - 20\"),\n", " gr.Slider(maximum=20, step=0.04, label=\"Slider: step @ 0.04\"),\n", " gr.Checkbox(label=\"Checkbox\"),\n", " gr.CheckboxGroup(label=\"CheckboxGroup\", choices=CHOICES, value=CHOICES[0:2]),\n", " gr.Radio(label=\"Radio\", choices=CHOICES, value=CHOICES[2]),\n", " gr.Dropdown(label=\"Dropdown\", choices=CHOICES),\n", " gr.Dropdown(\n", " label=\"Multiselect Dropdown (Max choice: 2)\",\n", " choices=CHOICES,\n", " multiselect=True,\n", " max_choices=2,\n", " ),\n", " gr.Image(label=\"Image\"),\n", " # gr.Image(label=\"Image w/ Cropper\", tool=\"select\"),\n", " # gr.Image(label=\"Sketchpad\", source=\"canvas\"),\n", " gr.Image(label=\"Webcam\", sources=[\"webcam\"]),\n", " gr.Video(label=\"Video\"),\n", " gr.Audio(label=\"Audio\"),\n", " gr.Audio(label=\"Microphone\", sources=[\"microphone\"]),\n", " gr.File(label=\"File\"),\n", " gr.Dataframe(label=\"Dataframe\", headers=[\"Name\", \"Age\", \"Gender\"]),\n", " ],\n", " outputs=[\n", " gr.Textbox(label=\"Textbox\"),\n", " gr.Label(label=\"Label\"),\n", " gr.Audio(label=\"Audio\"),\n", " gr.Image(label=\"Image\", elem_id=\"output-img\"),\n", " gr.Video(label=\"Video\"),\n", " gr.HighlightedText(\n", " label=\"HighlightedText\", color_map={\"punc\": \"pink\", \"test 0\": \"blue\"}\n", " ),\n", " gr.HighlightedText(label=\"HighlightedText\", show_legend=True),\n", " gr.JSON(label=\"JSON\"),\n", " gr.HTML(label=\"HTML\"),\n", " gr.File(label=\"File\"),\n", " gr.Dataframe(label=\"Dataframe\"),\n", " gr.Dataframe(label=\"Numpy\"),\n", " ],\n", " examples=[\n", " [\n", " \"the quick brown fox\",\n", " \"jumps over the lazy dog\",\n", " 10,\n", " 12,\n", " 4,\n", " True,\n", " [\"foo\", \"baz\"],\n", " \"baz\",\n", " \"bar\",\n", " [\"foo\", \"bar\"],\n", " os.path.join(os.path.abspath(''), \"files/cheetah1.jpg\"),\n", " # os.path.join(os.path.abspath(''), \"files/cheetah1.jpg\"),\n", " # os.path.join(os.path.abspath(''), \"files/cheetah1.jpg\"),\n", " os.path.join(os.path.abspath(''), \"files/cheetah1.jpg\"),\n", " os.path.join(os.path.abspath(''), \"files/world.mp4\"),\n", " os.path.join(os.path.abspath(''), \"files/cantina.wav\"),\n", " os.path.join(os.path.abspath(''), \"files/cantina.wav\"),\n", " os.path.join(os.path.abspath(''), \"files/titanic.csv\"),\n", " [[1, 2, 3, 4], [4, 5, 6, 7], [8, 9, 1, 2], [3, 4, 5, 6]],\n", " ]\n", " ]\n", " * 3,\n", " title=\"Kitchen Sink\",\n", " description=\"Try out all the components!\",\n", " article=\"Learn more about [Gradio](http://gradio.app)\",\n", " cache_examples=True,\n", ")\n", "\n", "if __name__ == \"__main__\":\n", " demo.launch()\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
demos/kitchen_sink/run.py ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import json
3
+
4
+ import numpy as np
5
+
6
+ import gradio as gr
7
+
8
+ CHOICES = ["foo", "bar", "baz"]
9
+ JSONOBJ = """{"items":{"item":[{"id": "0001","type": null,"is_good": false,"ppu": 0.55,"batters":{"batter":[{ "id": "1001", "type": "Regular" },{ "id": "1002", "type": "Chocolate" },{ "id": "1003", "type": "Blueberry" },{ "id": "1004", "type": "Devil's Food" }]},"topping":[{ "id": "5001", "type": "None" },{ "id": "5002", "type": "Glazed" },{ "id": "5005", "type": "Sugar" },{ "id": "5007", "type": "Powdered Sugar" },{ "id": "5006", "type": "Chocolate with Sprinkles" },{ "id": "5003", "type": "Chocolate" },{ "id": "5004", "type": "Maple" }]}]}}"""
10
+
11
+ def fn(
12
+ text1,
13
+ text2,
14
+ num,
15
+ slider1,
16
+ slider2,
17
+ single_checkbox,
18
+ checkboxes,
19
+ radio,
20
+ dropdown,
21
+ multi_dropdown,
22
+ im1,
23
+ # im2,
24
+ # im3,
25
+ im4,
26
+ video,
27
+ audio1,
28
+ audio2,
29
+ file,
30
+ df1,
31
+ ):
32
+ return (
33
+ (text1 if single_checkbox else text2)
34
+ + ", selected:"
35
+ + ", ".join(checkboxes), # Text
36
+ {
37
+ "positive": num / (num + slider1 + slider2),
38
+ "negative": slider1 / (num + slider1 + slider2),
39
+ "neutral": slider2 / (num + slider1 + slider2),
40
+ }, # Label
41
+ (audio1[0], np.flipud(audio1[1]))
42
+ if audio1 is not None
43
+ else os.path.join(os.path.dirname(__file__), "files/cantina.wav"), # Audio
44
+ np.flipud(im1)
45
+ if im1 is not None
46
+ else os.path.join(os.path.dirname(__file__), "files/cheetah1.jpg"), # Image
47
+ video
48
+ if video is not None
49
+ else os.path.join(os.path.dirname(__file__), "files/world.mp4"), # Video
50
+ [
51
+ ("The", "art"),
52
+ ("quick brown", "adj"),
53
+ ("fox", "nn"),
54
+ ("jumped", "vrb"),
55
+ ("testing testing testing", None),
56
+ ("over", "prp"),
57
+ ("the", "art"),
58
+ ("testing", None),
59
+ ("lazy", "adj"),
60
+ ("dogs", "nn"),
61
+ (".", "punc"),
62
+ ]
63
+ + [(f"test {x}", f"test {x}") for x in range(10)], # HighlightedText
64
+ # [("The testing testing testing", None), ("quick brown", 0.2), ("fox", 1), ("jumped", -1), ("testing testing testing", 0), ("over", 0), ("the", 0), ("testing", 0), ("lazy", 1), ("dogs", 0), (".", 1)] + [(f"test {x}", x/10) for x in range(-10, 10)], # HighlightedText
65
+ [
66
+ ("The testing testing testing", None),
67
+ ("over", 0.6),
68
+ ("the", 0.2),
69
+ ("testing", None),
70
+ ("lazy", -0.1),
71
+ ("dogs", 0.4),
72
+ (".", 0),
73
+ ]
74
+ + [("test", x / 10) for x in range(-10, 10)], # HighlightedText
75
+ json.loads(JSONOBJ), # JSON
76
+ "<button style='background-color: red'>Click Me: "
77
+ + radio
78
+ + "</button>", # HTML
79
+ os.path.join(os.path.dirname(__file__), "files/titanic.csv"),
80
+ df1, # Dataframe
81
+ np.random.randint(0, 10, (4, 4)), # Dataframe
82
+ )
83
+
84
+ demo = gr.Interface(
85
+ fn,
86
+ inputs=[
87
+ gr.Textbox(value="Lorem ipsum", label="Textbox"),
88
+ gr.Textbox(lines=3, placeholder="Type here..", label="Textbox 2"),
89
+ gr.Number(label="Number", value=42),
90
+ gr.Slider(10, 20, value=15, label="Slider: 10 - 20"),
91
+ gr.Slider(maximum=20, step=0.04, label="Slider: step @ 0.04"),
92
+ gr.Checkbox(label="Checkbox"),
93
+ gr.CheckboxGroup(label="CheckboxGroup", choices=CHOICES, value=CHOICES[0:2]),
94
+ gr.Radio(label="Radio", choices=CHOICES, value=CHOICES[2]),
95
+ gr.Dropdown(label="Dropdown", choices=CHOICES),
96
+ gr.Dropdown(
97
+ label="Multiselect Dropdown (Max choice: 2)",
98
+ choices=CHOICES,
99
+ multiselect=True,
100
+ max_choices=2,
101
+ ),
102
+ gr.Image(label="Image"),
103
+ # gr.Image(label="Image w/ Cropper", tool="select"),
104
+ # gr.Image(label="Sketchpad", source="canvas"),
105
+ gr.Image(label="Webcam", sources=["webcam"]),
106
+ gr.Video(label="Video"),
107
+ gr.Audio(label="Audio"),
108
+ gr.Audio(label="Microphone", sources=["microphone"]),
109
+ gr.File(label="File"),
110
+ gr.Dataframe(label="Dataframe", headers=["Name", "Age", "Gender"]),
111
+ ],
112
+ outputs=[
113
+ gr.Textbox(label="Textbox"),
114
+ gr.Label(label="Label"),
115
+ gr.Audio(label="Audio"),
116
+ gr.Image(label="Image", elem_id="output-img"),
117
+ gr.Video(label="Video"),
118
+ gr.HighlightedText(
119
+ label="HighlightedText", color_map={"punc": "pink", "test 0": "blue"}
120
+ ),
121
+ gr.HighlightedText(label="HighlightedText", show_legend=True),
122
+ gr.JSON(label="JSON"),
123
+ gr.HTML(label="HTML"),
124
+ gr.File(label="File"),
125
+ gr.Dataframe(label="Dataframe"),
126
+ gr.Dataframe(label="Numpy"),
127
+ ],
128
+ examples=[
129
+ [
130
+ "the quick brown fox",
131
+ "jumps over the lazy dog",
132
+ 10,
133
+ 12,
134
+ 4,
135
+ True,
136
+ ["foo", "baz"],
137
+ "baz",
138
+ "bar",
139
+ ["foo", "bar"],
140
+ os.path.join(os.path.dirname(__file__), "files/cheetah1.jpg"),
141
+ # os.path.join(os.path.dirname(__file__), "files/cheetah1.jpg"),
142
+ # os.path.join(os.path.dirname(__file__), "files/cheetah1.jpg"),
143
+ os.path.join(os.path.dirname(__file__), "files/cheetah1.jpg"),
144
+ os.path.join(os.path.dirname(__file__), "files/world.mp4"),
145
+ os.path.join(os.path.dirname(__file__), "files/cantina.wav"),
146
+ os.path.join(os.path.dirname(__file__), "files/cantina.wav"),
147
+ os.path.join(os.path.dirname(__file__), "files/titanic.csv"),
148
+ [[1, 2, 3, 4], [4, 5, 6, 7], [8, 9, 1, 2], [3, 4, 5, 6]],
149
+ ]
150
+ ]
151
+ * 3,
152
+ title="Kitchen Sink",
153
+ description="Try out all the components!",
154
+ article="Learn more about [Gradio](http://gradio.app)",
155
+ cache_examples=True,
156
+ )
157
+
158
+ if __name__ == "__main__":
159
+ demo.launch()
demos/kitchen_sink_random/__init__.py ADDED
File without changes
demos/kitchen_sink_random/constants.py ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import matplotlib.pyplot as plt
3
+ import random
4
+ import os
5
+
6
+ def random_plot():
7
+ start_year = 2020
8
+ x = np.arange(start_year, start_year + random.randint(0, 10))
9
+ year_count = x.shape[0]
10
+ plt_format = "-"
11
+ fig = plt.figure()
12
+ ax = fig.add_subplot(111)
13
+ series = np.arange(0, year_count, dtype=float)
14
+ series = series**2
15
+ series += np.random.rand(year_count)
16
+ ax.plot(x, series, plt_format)
17
+ return fig
18
+
19
+ img_dir = os.path.join(os.path.dirname(__file__), "files")
20
+ file_dir = os.path.join(os.path.dirname(__file__), "..", "kitchen_sink", "files")
21
+ model3d_dir = os.path.join(os.path.dirname(__file__), "..", "model3D", "files")
22
+ highlighted_text_output_1 = [
23
+ {
24
+ "entity": "I-LOC",
25
+ "score": 0.9988978,
26
+ "index": 2,
27
+ "word": "Chicago",
28
+ "start": 5,
29
+ "end": 12,
30
+ },
31
+ {
32
+ "entity": "I-MISC",
33
+ "score": 0.9958592,
34
+ "index": 5,
35
+ "word": "Pakistani",
36
+ "start": 22,
37
+ "end": 31,
38
+ },
39
+ ]
40
+ highlighted_text_output_2 = [
41
+ {
42
+ "entity": "I-LOC",
43
+ "score": 0.9988978,
44
+ "index": 2,
45
+ "word": "Chicago",
46
+ "start": 5,
47
+ "end": 12,
48
+ },
49
+ {
50
+ "entity": "I-LOC",
51
+ "score": 0.9958592,
52
+ "index": 5,
53
+ "word": "Pakistan",
54
+ "start": 22,
55
+ "end": 30,
56
+ },
57
+ ]
58
+
59
+ highlighted_text = "Does Chicago have any Pakistani restaurants"
60
+
61
+ def random_model3d():
62
+ model_3d = random.choice(
63
+ [os.path.join(model3d_dir, model) for model in os.listdir(model3d_dir) if model != "source.txt"]
64
+ )
65
+ return model_3d
demos/kitchen_sink_random/files/cheetah1.jpeg ADDED
demos/kitchen_sink_random/files/cheetah1.jpg ADDED
demos/kitchen_sink_random/files/lion.jpg ADDED
demos/kitchen_sink_random/requirements.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ matplotlib
2
+ pandas
demos/kitchen_sink_random/run.py ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from datetime import datetime
3
+ import random
4
+ import string
5
+ import os
6
+ import pandas as pd
7
+
8
+ from constants import (
9
+ file_dir,
10
+ img_dir,
11
+ highlighted_text,
12
+ highlighted_text_output_2,
13
+ highlighted_text_output_1,
14
+ random_plot,
15
+ random_model3d,
16
+ )
17
+
18
+ demo = gr.Interface(
19
+ lambda *args: args[0],
20
+ inputs=[
21
+ gr.Textbox(value=lambda: datetime.now(), label="Current Time"),
22
+ gr.Number(value=lambda: random.random(), label="Ranom Percentage"),
23
+ gr.Slider(minimum=-1, maximum=1, randomize=True, label="Slider with randomize"),
24
+ gr.Slider(
25
+ minimum=0,
26
+ maximum=1,
27
+ value=lambda: random.random(),
28
+ label="Slider with value func",
29
+ ),
30
+ gr.Checkbox(value=lambda: random.random() > 0.5, label="Random Checkbox"),
31
+ gr.CheckboxGroup(
32
+ choices=["a", "b", "c", "d"],
33
+ value=lambda: random.choice(["a", "b", "c", "d"]),
34
+ label="Random CheckboxGroup",
35
+ ),
36
+ gr.Radio(
37
+ choices=list(string.ascii_lowercase),
38
+ value=lambda: random.choice(string.ascii_lowercase),
39
+ ),
40
+ gr.Dropdown(
41
+ choices=["a", "b", "c", "d", "e"],
42
+ value=lambda: random.choice(["a", "b", "c"]),
43
+ ),
44
+ gr.Image(
45
+ value=lambda: random.choice(
46
+ [os.path.join(img_dir, img) for img in os.listdir(img_dir)]
47
+ )
48
+ ),
49
+ gr.Video(value=lambda: os.path.join(file_dir, "world.mp4")),
50
+ gr.Audio(value=lambda: os.path.join(file_dir, "cantina.wav")),
51
+ gr.File(
52
+ value=lambda: random.choice(
53
+ [os.path.join(file_dir, img) for img in os.listdir(file_dir)]
54
+ )
55
+ ),
56
+ gr.Dataframe(
57
+ value=lambda: pd.DataFrame(
58
+ {"random_number_rows": range(random.randint(0, 10))}
59
+ )
60
+ ),
61
+ gr.State(value=lambda: random.choice(string.ascii_lowercase)),
62
+ gr.ColorPicker(value=lambda: random.choice(["#000000", "#ff0000", "#0000FF"])),
63
+ gr.Label(value=lambda: random.choice(["Pedestrian", "Car", "Cyclist"])),
64
+ gr.HighlightedText(
65
+ value=lambda: random.choice(
66
+ [
67
+ {"text": highlighted_text, "entities": highlighted_text_output_1},
68
+ {"text": highlighted_text, "entities": highlighted_text_output_2},
69
+ ]
70
+ ),
71
+ ),
72
+ gr.JSON(value=lambda: random.choice([{"a": 1}, {"b": 2}])),
73
+ gr.HTML(
74
+ value=lambda: random.choice(
75
+ [
76
+ '<p style="color:red;">I am red</p>',
77
+ '<p style="color:blue;">I am blue</p>',
78
+ ]
79
+ )
80
+ ),
81
+ gr.Gallery(
82
+ value=lambda: [os.path.join(img_dir, img) for img in os.listdir(img_dir)]
83
+ ),
84
+ gr.Chatbot(
85
+ value=lambda: random.choice([[("hello", "hi!")], [("bye", "goodbye!")]])
86
+ ),
87
+ gr.Model3D(value=random_model3d),
88
+ gr.Plot(value=random_plot),
89
+ gr.Markdown(value=lambda: f"### {random.choice(['Hello', 'Hi', 'Goodbye!'])}"),
90
+ ],
91
+ outputs=[
92
+ gr.State(value=lambda: random.choice(string.ascii_lowercase))
93
+ ],
94
+ )
95
+
96
+ if __name__ == "__main__":
97
+ demo.launch()
demos/matrix_transpose/run.ipynb ADDED
@@ -0,0 +1 @@
 
 
1
+ {"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: matrix_transpose"]}, {"cell_type": "code", "execution_count": null, "id": "272996653310673477252411125948039410165", "metadata": {}, "outputs": [], "source": ["!pip install -q gradio "]}, {"cell_type": "code", "execution_count": null, "id": "288918539441861185822528903084949547379", "metadata": {}, "outputs": [], "source": ["import numpy as np\n", "\n", "import gradio as gr\n", "\n", "def transpose(matrix):\n", " return matrix.T\n", "\n", "demo = gr.Interface(\n", " transpose,\n", " gr.Dataframe(type=\"numpy\", datatype=\"number\", row_count=5, col_count=3),\n", " \"numpy\",\n", " examples=[\n", " [np.zeros((3, 3)).tolist()],\n", " [np.ones((2, 2)).tolist()],\n", " [np.random.randint(0, 10, (3, 10)).tolist()],\n", " [np.random.randint(0, 10, (10, 3)).tolist()],\n", " [np.random.randint(0, 10, (10, 10)).tolist()],\n", " ],\n", " cache_examples=False\n", ")\n", "\n", "if __name__ == \"__main__\":\n", " demo.launch()\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
demos/matrix_transpose/run.py ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+
3
+ import gradio as gr
4
+
5
+ def transpose(matrix):
6
+ return matrix.T
7
+
8
+ demo = gr.Interface(
9
+ transpose,
10
+ gr.Dataframe(type="numpy", datatype="number", row_count=5, col_count=3),
11
+ "numpy",
12
+ examples=[
13
+ [np.zeros((3, 3)).tolist()],
14
+ [np.ones((2, 2)).tolist()],
15
+ [np.random.randint(0, 10, (3, 10)).tolist()],
16
+ [np.random.randint(0, 10, (10, 3)).tolist()],
17
+ [np.random.randint(0, 10, (10, 10)).tolist()],
18
+ ],
19
+ cache_examples=False
20
+ )
21
+
22
+ if __name__ == "__main__":
23
+ demo.launch()
demos/matrix_transpose/screenshot.png ADDED
demos/mini_leaderboard/assets/__init__.py ADDED
File without changes
demos/mini_leaderboard/assets/custom_css.css ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Hides the final AutoEvalColumn */
2
+ #llm-benchmark-tab-table table td:last-child,
3
+ #llm-benchmark-tab-table table th:last-child {
4
+ display: none;
5
+ }
6
+
7
+ /* Limit the width of the first AutoEvalColumn so that names don't expand too much */
8
+ table td:first-child,
9
+ table th:first-child {
10
+ max-width: 400px;
11
+ overflow: auto;
12
+ white-space: nowrap;
13
+ }
14
+
15
+ /* Full width space */
16
+ .gradio-container {
17
+ max-width: 95%!important;
18
+ }
19
+
20
+ /* Text style and margins */
21
+ .markdown-text {
22
+ font-size: 16px !important;
23
+ }
24
+
25
+ #models-to-add-text {
26
+ font-size: 18px !important;
27
+ }
28
+
29
+ #citation-button span {
30
+ font-size: 16px !important;
31
+ }
32
+
33
+ #citation-button textarea {
34
+ font-size: 16px !important;
35
+ }
36
+
37
+ #citation-button > label > button {
38
+ margin: 6px;
39
+ transform: scale(1.3);
40
+ }
41
+
42
+ #search-bar-table-box > div:first-child {
43
+ background: none;
44
+ border: none;
45
+ }
46
+
47
+ #search-bar {
48
+ padding: 0px;
49
+ }
50
+
51
+ .tab-buttons button {
52
+ font-size: 20px;
53
+ }
54
+
55
+ /* Filters style */
56
+ #filter_type{
57
+ border: 0;
58
+ padding-left: 0;
59
+ padding-top: 0;
60
+ }
61
+ #filter_type label {
62
+ display: flex;
63
+ }
64
+ #filter_type label > span{
65
+ margin-top: var(--spacing-lg);
66
+ margin-right: 0.5em;
67
+ }
68
+ #filter_type label > .wrap{
69
+ width: 103px;
70
+ }
71
+ #filter_type label > .wrap .wrap-inner{
72
+ padding: 2px;
73
+ }
74
+ #filter_type label > .wrap .wrap-inner input{
75
+ width: 1px
76
+ }
77
+ #filter-columns-type{
78
+ border:0;
79
+ padding:0.5;
80
+ }
81
+ #filter-columns-size{
82
+ border:0;
83
+ padding:0.5;
84
+ }
85
+ #box-filter > .form{
86
+ border: 0
87
+ }
demos/mini_leaderboard/assets/leaderboard_data.json ADDED
The diff for this file is too large to render. See raw diff
 
demos/mini_leaderboard/requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ pandas
demos/mini_leaderboard/run.ipynb ADDED
@@ -0,0 +1 @@
 
 
1
+ {"cells": [{"cell_type": "markdown", "id": "302934307671667531413257853548643485645", "metadata": {}, "source": ["# Gradio Demo: mini_leaderboard"]}, {"cell_type": "code", "execution_count": null, "id": "272996653310673477252411125948039410165", "metadata": {}, "outputs": [], "source": ["!pip install -q gradio pandas "]}, {"cell_type": "code", "execution_count": null, "id": "288918539441861185822528903084949547379", "metadata": {}, "outputs": [], "source": ["# Downloading files from the demo repo\n", "import os\n", "os.mkdir('assets')\n", "!wget -q -O assets/__init__.py https://github.com/gradio-app/gradio/raw/main/demo/mini_leaderboard/assets/__init__.py\n", "!wget -q -O assets/custom_css.css https://github.com/gradio-app/gradio/raw/main/demo/mini_leaderboard/assets/custom_css.css\n", "!wget -q -O assets/leaderboard_data.json https://github.com/gradio-app/gradio/raw/main/demo/mini_leaderboard/assets/leaderboard_data.json"]}, {"cell_type": "code", "execution_count": null, "id": "44380577570523278879349135829904343037", "metadata": {}, "outputs": [], "source": ["import gradio as gr\n", "import pandas as pd\n", "from pathlib import Path\n", "\n", "abs_path = Path(__file__).parent.absolute()\n", "\n", "df = pd.read_json(str(abs_path / \"assets/leaderboard_data.json\"))\n", "invisible_df = df.copy()\n", "\n", "COLS = [\n", " \"T\",\n", " \"Model\",\n", " \"Average \u2b06\ufe0f\",\n", " \"ARC\",\n", " \"HellaSwag\",\n", " \"MMLU\",\n", " \"TruthfulQA\",\n", " \"Winogrande\",\n", " \"GSM8K\",\n", " \"Type\",\n", " \"Architecture\",\n", " \"Precision\",\n", " \"Merged\",\n", " \"Hub License\",\n", " \"#Params (B)\",\n", " \"Hub \u2764\ufe0f\",\n", " \"Model sha\",\n", " \"model_name_for_query\",\n", "]\n", "ON_LOAD_COLS = [\n", " \"T\",\n", " \"Model\",\n", " \"Average \u2b06\ufe0f\",\n", " \"ARC\",\n", " \"HellaSwag\",\n", " \"MMLU\",\n", " \"TruthfulQA\",\n", " \"Winogrande\",\n", " \"GSM8K\",\n", " \"model_name_for_query\",\n", "]\n", "TYPES = [\n", " \"str\",\n", " \"markdown\",\n", " \"number\",\n", " \"number\",\n", " \"number\",\n", " \"number\",\n", " \"number\",\n", " \"number\",\n", " \"number\",\n", " \"str\",\n", " \"str\",\n", " \"str\",\n", " \"str\",\n", " \"bool\",\n", " \"str\",\n", " \"number\",\n", " \"number\",\n", " \"bool\",\n", " \"str\",\n", " \"bool\",\n", " \"bool\",\n", " \"str\",\n", "]\n", "NUMERIC_INTERVALS = {\n", " \"?\": pd.Interval(-1, 0, closed=\"right\"),\n", " \"~1.5\": pd.Interval(0, 2, closed=\"right\"),\n", " \"~3\": pd.Interval(2, 4, closed=\"right\"),\n", " \"~7\": pd.Interval(4, 9, closed=\"right\"),\n", " \"~13\": pd.Interval(9, 20, closed=\"right\"),\n", " \"~35\": pd.Interval(20, 45, closed=\"right\"),\n", " \"~60\": pd.Interval(45, 70, closed=\"right\"),\n", " \"70+\": pd.Interval(70, 10000, closed=\"right\"),\n", "}\n", "MODEL_TYPE = [str(s) for s in df[\"T\"].unique()]\n", "Precision = [str(s) for s in df[\"Precision\"].unique()]\n", "\n", "# Searching and filtering\n", "def update_table(\n", " hidden_df: pd.DataFrame,\n", " columns: list,\n", " type_query: list,\n", " precision_query: str,\n", " size_query: list,\n", " query: str,\n", "):\n", " filtered_df = filter_models(hidden_df, type_query, size_query, precision_query) # type: ignore\n", " filtered_df = filter_queries(query, filtered_df)\n", " df = select_columns(filtered_df, columns)\n", " return df\n", "\n", "def search_table(df: pd.DataFrame, query: str) -> pd.DataFrame:\n", " return df[(df[\"model_name_for_query\"].str.contains(query, case=False))] # type: ignore\n", "\n", "def select_columns(df: pd.DataFrame, columns: list) -> pd.DataFrame:\n", " # We use COLS to maintain sorting\n", " filtered_df = df[[c for c in COLS if c in df.columns and c in columns]]\n", " return filtered_df # type: ignore\n", "\n", "def filter_queries(query: str, filtered_df: pd.DataFrame) -> pd.DataFrame:\n", " final_df = []\n", " if query != \"\":\n", " queries = [q.strip() for q in query.split(\";\")]\n", " for _q in queries:\n", " _q = _q.strip()\n", " if _q != \"\":\n", " temp_filtered_df = search_table(filtered_df, _q)\n", " if len(temp_filtered_df) > 0:\n", " final_df.append(temp_filtered_df)\n", " if len(final_df) > 0:\n", " filtered_df = pd.concat(final_df)\n", " filtered_df = filtered_df.drop_duplicates( # type: ignore\n", " subset=[\"Model\", \"Precision\", \"Model sha\"]\n", " )\n", "\n", " return filtered_df\n", "\n", "def filter_models(\n", " df: pd.DataFrame,\n", " type_query: list,\n", " size_query: list,\n", " precision_query: list,\n", ") -> pd.DataFrame:\n", " # Show all models\n", " filtered_df = df\n", "\n", " type_emoji = [t[0] for t in type_query]\n", " filtered_df = filtered_df.loc[df[\"T\"].isin(type_emoji)]\n", " filtered_df = filtered_df.loc[df[\"Precision\"].isin(precision_query + [\"None\"])]\n", "\n", " numeric_interval = pd.IntervalIndex(\n", " sorted([NUMERIC_INTERVALS[s] for s in size_query]) # type: ignore\n", " )\n", " params_column = pd.to_numeric(df[\"#Params (B)\"], errors=\"coerce\")\n", " mask = params_column.apply(lambda x: any(numeric_interval.contains(x))) # type: ignore\n", " filtered_df = filtered_df.loc[mask]\n", "\n", " return filtered_df\n", "\n", "demo = gr.Blocks(css=str(abs_path / \"assets/leaderboard_data.json\"))\n", "with demo:\n", " gr.Markdown(\"\"\"Test Space of the LLM Leaderboard\"\"\", elem_classes=\"markdown-text\")\n", "\n", " with gr.Tabs(elem_classes=\"tab-buttons\") as tabs:\n", " with gr.TabItem(\"\ud83c\udfc5 LLM Benchmark\", elem_id=\"llm-benchmark-tab-table\", id=0):\n", " with gr.Row():\n", " with gr.Column():\n", " with gr.Row():\n", " search_bar = gr.Textbox(\n", " placeholder=\" \ud83d\udd0d Search for your model (separate multiple queries with `;`) and press ENTER...\",\n", " show_label=False,\n", " elem_id=\"search-bar\",\n", " )\n", " with gr.Row():\n", " shown_columns = gr.CheckboxGroup(\n", " choices=COLS,\n", " value=ON_LOAD_COLS,\n", " label=\"Select columns to show\",\n", " elem_id=\"column-select\",\n", " interactive=True,\n", " )\n", " with gr.Column(min_width=320):\n", " filter_columns_type = gr.CheckboxGroup(\n", " label=\"Model types\",\n", " choices=MODEL_TYPE,\n", " value=MODEL_TYPE,\n", " interactive=True,\n", " elem_id=\"filter-columns-type\",\n", " )\n", " filter_columns_precision = gr.CheckboxGroup(\n", " label=\"Precision\",\n", " choices=Precision,\n", " value=Precision,\n", " interactive=True,\n", " elem_id=\"filter-columns-precision\",\n", " )\n", " filter_columns_size = gr.CheckboxGroup(\n", " label=\"Model sizes (in billions of parameters)\",\n", " choices=list(NUMERIC_INTERVALS.keys()),\n", " value=list(NUMERIC_INTERVALS.keys()),\n", " interactive=True,\n", " elem_id=\"filter-columns-size\",\n", " )\n", "\n", " leaderboard_table = gr.components.Dataframe(\n", " value=df[ON_LOAD_COLS], # type: ignore\n", " headers=ON_LOAD_COLS,\n", " datatype=TYPES,\n", " elem_id=\"leaderboard-table\",\n", " interactive=False,\n", " visible=True,\n", " column_widths=[\"2%\", \"33%\"],\n", " )\n", "\n", " # Dummy leaderboard for handling the case when the user uses backspace key\n", " hidden_leaderboard_table_for_search = gr.components.Dataframe(\n", " value=invisible_df[COLS], # type: ignore\n", " headers=COLS,\n", " datatype=TYPES,\n", " visible=False,\n", " )\n", " search_bar.submit(\n", " update_table,\n", " [\n", " hidden_leaderboard_table_for_search,\n", " shown_columns,\n", " filter_columns_type,\n", " filter_columns_precision,\n", " filter_columns_size,\n", " search_bar,\n", " ],\n", " leaderboard_table,\n", " )\n", " for selector in [\n", " shown_columns,\n", " filter_columns_type,\n", " filter_columns_precision,\n", " filter_columns_size,\n", " ]:\n", " selector.change(\n", " update_table,\n", " [\n", " hidden_leaderboard_table_for_search,\n", " shown_columns,\n", " filter_columns_type,\n", " filter_columns_precision,\n", " filter_columns_size,\n", " search_bar,\n", " ],\n", " leaderboard_table,\n", " queue=True,\n", " )\n", "\n", "if __name__ == \"__main__\":\n", " demo.queue(default_concurrency_limit=40).launch()\n"]}], "metadata": {}, "nbformat": 4, "nbformat_minor": 5}
demos/mini_leaderboard/run.py ADDED
@@ -0,0 +1,236 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import pandas as pd
3
+ from pathlib import Path
4
+
5
+ abs_path = Path(__file__).parent.absolute()
6
+
7
+ df = pd.read_json(str(abs_path / "assets/leaderboard_data.json"))
8
+ invisible_df = df.copy()
9
+
10
+ COLS = [
11
+ "T",
12
+ "Model",
13
+ "Average ⬆️",
14
+ "ARC",
15
+ "HellaSwag",
16
+ "MMLU",
17
+ "TruthfulQA",
18
+ "Winogrande",
19
+ "GSM8K",
20
+ "Type",
21
+ "Architecture",
22
+ "Precision",
23
+ "Merged",
24
+ "Hub License",
25
+ "#Params (B)",
26
+ "Hub ❤️",
27
+ "Model sha",
28
+ "model_name_for_query",
29
+ ]
30
+ ON_LOAD_COLS = [
31
+ "T",
32
+ "Model",
33
+ "Average ⬆️",
34
+ "ARC",
35
+ "HellaSwag",
36
+ "MMLU",
37
+ "TruthfulQA",
38
+ "Winogrande",
39
+ "GSM8K",
40
+ "model_name_for_query",
41
+ ]
42
+ TYPES = [
43
+ "str",
44
+ "markdown",
45
+ "number",
46
+ "number",
47
+ "number",
48
+ "number",
49
+ "number",
50
+ "number",
51
+ "number",
52
+ "str",
53
+ "str",
54
+ "str",
55
+ "str",
56
+ "bool",
57
+ "str",
58
+ "number",
59
+ "number",
60
+ "bool",
61
+ "str",
62
+ "bool",
63
+ "bool",
64
+ "str",
65
+ ]
66
+ NUMERIC_INTERVALS = {
67
+ "?": pd.Interval(-1, 0, closed="right"),
68
+ "~1.5": pd.Interval(0, 2, closed="right"),
69
+ "~3": pd.Interval(2, 4, closed="right"),
70
+ "~7": pd.Interval(4, 9, closed="right"),
71
+ "~13": pd.Interval(9, 20, closed="right"),
72
+ "~35": pd.Interval(20, 45, closed="right"),
73
+ "~60": pd.Interval(45, 70, closed="right"),
74
+ "70+": pd.Interval(70, 10000, closed="right"),
75
+ }
76
+ MODEL_TYPE = [str(s) for s in df["T"].unique()]
77
+ Precision = [str(s) for s in df["Precision"].unique()]
78
+
79
+ # Searching and filtering
80
+ def update_table(
81
+ hidden_df: pd.DataFrame,
82
+ columns: list,
83
+ type_query: list,
84
+ precision_query: str,
85
+ size_query: list,
86
+ query: str,
87
+ ):
88
+ filtered_df = filter_models(hidden_df, type_query, size_query, precision_query) # type: ignore
89
+ filtered_df = filter_queries(query, filtered_df)
90
+ df = select_columns(filtered_df, columns)
91
+ return df
92
+
93
+ def search_table(df: pd.DataFrame, query: str) -> pd.DataFrame:
94
+ return df[(df["model_name_for_query"].str.contains(query, case=False))] # type: ignore
95
+
96
+ def select_columns(df: pd.DataFrame, columns: list) -> pd.DataFrame:
97
+ # We use COLS to maintain sorting
98
+ filtered_df = df[[c for c in COLS if c in df.columns and c in columns]]
99
+ return filtered_df # type: ignore
100
+
101
+ def filter_queries(query: str, filtered_df: pd.DataFrame) -> pd.DataFrame:
102
+ final_df = []
103
+ if query != "":
104
+ queries = [q.strip() for q in query.split(";")]
105
+ for _q in queries:
106
+ _q = _q.strip()
107
+ if _q != "":
108
+ temp_filtered_df = search_table(filtered_df, _q)
109
+ if len(temp_filtered_df) > 0:
110
+ final_df.append(temp_filtered_df)
111
+ if len(final_df) > 0:
112
+ filtered_df = pd.concat(final_df)
113
+ filtered_df = filtered_df.drop_duplicates( # type: ignore
114
+ subset=["Model", "Precision", "Model sha"]
115
+ )
116
+
117
+ return filtered_df
118
+
119
+ def filter_models(
120
+ df: pd.DataFrame,
121
+ type_query: list,
122
+ size_query: list,
123
+ precision_query: list,
124
+ ) -> pd.DataFrame:
125
+ # Show all models
126
+ filtered_df = df
127
+
128
+ type_emoji = [t[0] for t in type_query]
129
+ filtered_df = filtered_df.loc[df["T"].isin(type_emoji)]
130
+ filtered_df = filtered_df.loc[df["Precision"].isin(precision_query + ["None"])]
131
+
132
+ numeric_interval = pd.IntervalIndex(
133
+ sorted([NUMERIC_INTERVALS[s] for s in size_query]) # type: ignore
134
+ )
135
+ params_column = pd.to_numeric(df["#Params (B)"], errors="coerce")
136
+ mask = params_column.apply(lambda x: any(numeric_interval.contains(x))) # type: ignore
137
+ filtered_df = filtered_df.loc[mask]
138
+
139
+ return filtered_df
140
+
141
+ demo = gr.Blocks(css=str(abs_path / "assets/leaderboard_data.json"))
142
+ with demo:
143
+ gr.Markdown("""Test Space of the LLM Leaderboard""", elem_classes="markdown-text")
144
+
145
+ with gr.Tabs(elem_classes="tab-buttons") as tabs:
146
+ with gr.TabItem("🏅 LLM Benchmark", elem_id="llm-benchmark-tab-table", id=0):
147
+ with gr.Row():
148
+ with gr.Column():
149
+ with gr.Row():
150
+ search_bar = gr.Textbox(
151
+ placeholder=" 🔍 Search for your model (separate multiple queries with `;`) and press ENTER...",
152
+ show_label=False,
153
+ elem_id="search-bar",
154
+ )
155
+ with gr.Row():
156
+ shown_columns = gr.CheckboxGroup(
157
+ choices=COLS,
158
+ value=ON_LOAD_COLS,
159
+ label="Select columns to show",
160
+ elem_id="column-select",
161
+ interactive=True,
162
+ )
163
+ with gr.Column(min_width=320):
164
+ filter_columns_type = gr.CheckboxGroup(
165
+ label="Model types",
166
+ choices=MODEL_TYPE,
167
+ value=MODEL_TYPE,
168
+ interactive=True,
169
+ elem_id="filter-columns-type",
170
+ )
171
+ filter_columns_precision = gr.CheckboxGroup(
172
+ label="Precision",
173
+ choices=Precision,
174
+ value=Precision,
175
+ interactive=True,
176
+ elem_id="filter-columns-precision",
177
+ )
178
+ filter_columns_size = gr.CheckboxGroup(
179
+ label="Model sizes (in billions of parameters)",
180
+ choices=list(NUMERIC_INTERVALS.keys()),
181
+ value=list(NUMERIC_INTERVALS.keys()),
182
+ interactive=True,
183
+ elem_id="filter-columns-size",
184
+ )
185
+
186
+ leaderboard_table = gr.components.Dataframe(
187
+ value=df[ON_LOAD_COLS], # type: ignore
188
+ headers=ON_LOAD_COLS,
189
+ datatype=TYPES,
190
+ elem_id="leaderboard-table",
191
+ interactive=False,
192
+ visible=True,
193
+ column_widths=["2%", "33%"],
194
+ )
195
+
196
+ # Dummy leaderboard for handling the case when the user uses backspace key
197
+ hidden_leaderboard_table_for_search = gr.components.Dataframe(
198
+ value=invisible_df[COLS], # type: ignore
199
+ headers=COLS,
200
+ datatype=TYPES,
201
+ visible=False,
202
+ )
203
+ search_bar.submit(
204
+ update_table,
205
+ [
206
+ hidden_leaderboard_table_for_search,
207
+ shown_columns,
208
+ filter_columns_type,
209
+ filter_columns_precision,
210
+ filter_columns_size,
211
+ search_bar,
212
+ ],
213
+ leaderboard_table,
214
+ )
215
+ for selector in [
216
+ shown_columns,
217
+ filter_columns_type,
218
+ filter_columns_precision,
219
+ filter_columns_size,
220
+ ]:
221
+ selector.change(
222
+ update_table,
223
+ [
224
+ hidden_leaderboard_table_for_search,
225
+ shown_columns,
226
+ filter_columns_type,
227
+ filter_columns_precision,
228
+ filter_columns_size,
229
+ search_bar,
230
+ ],
231
+ leaderboard_table,
232
+ queue=True,
233
+ )
234
+
235
+ if __name__ == "__main__":
236
+ demo.queue(default_concurrency_limit=40).launch()
demos/model3D/files/Bunny.obj ADDED
The diff for this file is too large to render. See raw diff
 
demos/model3D/files/Duck.glb ADDED
Binary file (120 kB). View file
 
demos/model3D/files/Fox.gltf ADDED
The diff for this file is too large to render. See raw diff
 
demos/model3D/files/face.obj ADDED
@@ -0,0 +1,2471 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ####
2
+ #
3
+ # OBJ File Generated by Meshlab
4
+ #
5
+ ####
6
+ # Object face.obj
7
+ #
8
+ # Vertices: 845
9
+ # Faces: 1610
10
+ #
11
+ ####
12
+ v 54.126293 -49.502399 71.230705 0.384314 0.254902 0.200000
13
+ v 51.424591 -54.578999 75.431709 0.337255 0.227451 0.172549
14
+ v 44.556496 -61.237099 65.307907 0.384314 0.254902 0.192157
15
+ v 18.416197 -75.205498 35.343601 0.529412 0.376471 0.298039
16
+ v 13.523697 -77.731102 34.633598 0.513725 0.364706 0.290196
17
+ v 11.454597 -74.201599 29.775103 0.639216 0.454902 0.372549
18
+ v 5.855427 -77.386299 30.315100 0.603922 0.435294 0.356863
19
+ v -0.378855 -77.287903 29.743700 0.611765 0.443137 0.360784
20
+ v 6.812867 -79.041397 33.545300 0.505882 0.368627 0.298039
21
+ v 21.881296 -70.810898 34.982002 0.588235 0.415686 0.329412
22
+ v 17.653797 -69.034798 30.263802 0.674510 0.478431 0.388235
23
+ v 39.436996 -66.435501 64.968597 0.164706 0.109804 0.082353
24
+ v 33.808598 -70.338699 57.717205 0.364706 0.247059 0.184314
25
+ v 31.909595 -68.409302 47.974705 0.439216 0.301961 0.227451
26
+ v 38.451797 -64.744904 55.703503 0.427451 0.294118 0.219608
27
+ v 28.802397 -72.939499 50.408905 0.372549 0.254902 0.192157
28
+ v 22.955397 -75.486603 43.228905 0.400000 0.274510 0.215686
29
+ v 26.511995 -70.622101 41.049904 0.494118 0.341176 0.262745
30
+ v 24.465696 -76.217796 49.972805 0.345098 0.239216 0.184314
31
+ v 15.571197 -78.986099 40.602001 0.396078 0.278431 0.219608
32
+ v 17.437696 -79.466103 47.124001 0.352941 0.247059 0.196078
33
+ v 28.846695 -74.018898 56.477203 0.164706 0.113725 0.086275
34
+ v 9.321696 -81.938202 48.001999 0.172549 0.129412 0.105882
35
+ v -0.898453 -82.647102 47.089699 0.172549 0.129412 0.105882
36
+ v -0.725759 -82.110100 43.572498 0.400000 0.301961 0.254902
37
+ v 18.763496 -79.316498 51.133400 0.172549 0.117647 0.094118
38
+ v 8.731546 -81.557503 44.441002 0.392157 0.286275 0.235294
39
+ v 27.614496 -65.079002 38.432205 0.596078 0.419608 0.321569
40
+ v 33.274998 -61.490501 43.398605 0.568627 0.400000 0.301961
41
+ v 38.784996 -60.440899 50.047802 0.513725 0.356863 0.266667
42
+ v 42.862595 -58.651798 55.019802 0.490196 0.337255 0.250980
43
+ v 7.726847 -80.575996 38.638500 0.415686 0.301961 0.247059
44
+ v -0.490965 -80.930901 37.912300 0.427451 0.317647 0.262745
45
+ v -0.419731 -79.354401 33.152100 0.513725 0.376471 0.305882
46
+ v -0.332592 -73.782600 27.050400 0.705882 0.505882 0.415686
47
+ v -0.212143 -66.515099 24.546000 0.815686 0.584314 0.501961
48
+ v 11.557498 -67.907898 26.621702 0.749020 0.529412 0.443137
49
+ v 23.830296 -66.563599 34.771904 0.631373 0.447059 0.352941
50
+ v 35.915897 105.133003 38.176804 0.219608 0.152941 0.117647
51
+ v 36.548496 101.879997 36.786003 0.454902 0.309804 0.235294
52
+ v 27.391598 102.010002 31.503502 0.278431 0.188235 0.141176
53
+ v 59.787598 -0.163902 47.832703 0.611765 0.403922 0.321569
54
+ v 50.721996 -9.559180 38.382904 0.721569 0.490196 0.403922
55
+ v 52.439697 -0.358719 38.911705 0.741176 0.501961 0.419608
56
+ v 29.889196 -56.737301 37.395603 0.662745 0.470588 0.360784
57
+ v 26.097795 -54.826500 33.666504 0.694118 0.486275 0.372549
58
+ v 26.293499 -49.727501 32.217205 0.717647 0.501961 0.388235
59
+ v 25.434498 -44.035900 30.291403 0.729412 0.509804 0.400000
60
+ v 31.436096 -44.876701 34.064003 0.737255 0.533333 0.411765
61
+ v 32.500095 -51.078300 37.202503 0.690196 0.490196 0.376471
62
+ v 21.003098 -62.278099 31.444601 0.705882 0.501961 0.400000
63
+ v 26.550097 -59.714100 35.467205 0.666667 0.474510 0.364706
64
+ v 44.267796 -52.222500 50.556103 0.552941 0.384314 0.290196
65
+ v 44.155598 -45.754700 45.234005 0.607843 0.423529 0.325490
66
+ v 39.424698 -54.441200 45.685303 0.588235 0.411765 0.309804
67
+ v 42.849094 -40.630600 40.559803 0.662745 0.462745 0.364706
68
+ v 38.941998 -42.900600 37.800304 0.713725 0.505882 0.400000
69
+ v 52.563396 -19.698900 43.829704 0.650980 0.443137 0.356863
70
+ v 46.654697 -16.837099 36.168205 0.749020 0.517647 0.427451
71
+ v 33.321995 -35.720200 31.409004 0.745098 0.541176 0.427451
72
+ v 32.657997 -40.731899 33.174603 0.752941 0.549020 0.427451
73
+ v 35.472797 -44.317001 36.017105 0.737255 0.533333 0.415686
74
+ v 27.102999 -39.309502 30.560902 0.713725 0.494118 0.388235
75
+ v 21.412498 -21.051500 22.568802 0.733333 0.509804 0.415686
76
+ v 23.988897 -17.175900 24.872402 0.803922 0.549020 0.447059
77
+ v 27.558098 -24.650700 25.424603 0.745098 0.533333 0.443137
78
+ v 27.926598 -35.123001 29.129301 0.701961 0.494118 0.384314
79
+ v 24.306997 -32.355598 25.602802 0.674510 0.478431 0.384314
80
+ v 26.352098 -28.906099 25.178001 0.725490 0.537255 0.439216
81
+ v 22.071098 -41.536701 27.588202 0.670588 0.447059 0.368627
82
+ v 20.085999 -45.811401 26.494501 0.701961 0.486275 0.384314
83
+ v 19.001799 -42.619900 24.806602 0.662745 0.431373 0.364706
84
+ v 28.976398 -21.374100 26.378202 0.788235 0.556863 0.454902
85
+ v 26.341497 -16.211300 25.941402 0.839216 0.584314 0.474510
86
+ v 30.814697 -16.946400 27.290703 0.866667 0.611765 0.501961
87
+ v 15.764998 -20.247000 19.382002 0.698039 0.478431 0.392157
88
+ v 16.598598 -15.898800 21.267502 0.737255 0.486275 0.400000
89
+ v 22.444199 -3.466390 25.169203 0.752941 0.505882 0.415686
90
+ v 21.588697 -7.433040 25.304302 0.760784 0.513725 0.423529
91
+ v 18.939598 -4.099130 23.521101 0.556863 0.321569 0.270588
92
+ v 26.227198 -11.129200 26.175901 0.894118 0.639216 0.533333
93
+ v 23.958097 -13.787900 25.571701 0.843137 0.584314 0.474510
94
+ v 3.233079 -28.114599 12.996900 0.807843 0.517647 0.474510
95
+ v 3.691189 -24.150000 13.560400 0.788235 0.545098 0.450980
96
+ v 7.239779 -23.905701 14.043200 0.760784 0.533333 0.439216
97
+ v 3.876879 -20.045601 14.070800 0.803922 0.580392 0.490196
98
+ v 9.195189 -19.025499 15.793001 0.705882 0.498039 0.411765
99
+ v 3.141149 -17.198000 13.771500 0.807843 0.584314 0.498039
100
+ v 4.931409 -13.967200 13.240000 0.737255 0.509804 0.435294
101
+ v 30.555098 -31.658199 28.330402 0.737255 0.537255 0.439216
102
+ v 36.921795 -39.106701 34.709404 0.749020 0.541176 0.427451
103
+ v 37.097694 -31.720600 32.396603 0.737255 0.521569 0.415686
104
+ v 32.560898 -26.616501 28.413202 0.749020 0.533333 0.435294
105
+ v 10.314199 -9.869830 13.888401 0.564706 0.352941 0.301961
106
+ v 3.716749 -10.896600 9.270600 0.549020 0.333333 0.278431
107
+ v 6.998729 -8.745080 9.093191 0.458824 0.274510 0.247059
108
+ v 11.017399 -7.650950 11.325301 0.407843 0.235294 0.196078
109
+ v 13.094099 -8.179750 13.619401 0.596078 0.372549 0.305882
110
+ v 14.387198 -9.345590 16.544502 0.682353 0.423529 0.349020
111
+ v 14.674398 -10.957500 19.197702 0.619608 0.352941 0.286275
112
+ v 12.273198 -13.638600 18.082401 0.670588 0.415686 0.349020
113
+ v 15.706099 -12.324600 21.310001 0.654902 0.400000 0.341176
114
+ v 0.160743 -11.927500 9.164860 0.631373 0.415686 0.345098
115
+ v 16.748499 -0.088195 17.466702 0.486275 0.262745 0.211765
116
+ v 14.135499 2.999720 13.703901 0.498039 0.278431 0.223529
117
+ v 15.227698 3.521270 17.552402 0.509804 0.286275 0.227451
118
+ v 11.515499 5.295930 9.697881 0.517647 0.298039 0.235294
119
+ v 12.664099 6.361880 14.138000 0.529412 0.305882 0.243137
120
+ v 17.526098 -1.031370 20.210901 0.478431 0.250980 0.203922
121
+ v 18.114098 -7.909870 23.033703 0.556863 0.313725 0.266667
122
+ v 10.384699 8.630760 10.439901 0.541176 0.321569 0.250980
123
+ v 17.828499 0.413114 21.808401 0.541176 0.305882 0.250980
124
+ v 17.929298 -3.542410 20.437902 0.482353 0.247059 0.203922
125
+ v 17.031097 -10.684200 22.274002 0.619608 0.368627 0.313725
126
+ v 0.287526 -2.020300 -3.337250 0.925490 0.694118 0.627451
127
+ v 3.060050 -2.048090 -2.924980 0.894118 0.650980 0.584314
128
+ v 3.007730 -4.729930 -2.346410 0.870588 0.611765 0.537255
129
+ v 5.864850 -1.934710 -1.552539 0.835294 0.592157 0.525490
130
+ v 5.417400 -4.893230 -0.945915 0.788235 0.533333 0.458824
131
+ v 8.198860 -5.353820 2.653151 0.627451 0.403922 0.329412
132
+ v 5.432270 -7.772490 2.088590 0.639216 0.411765 0.337255
133
+ v 6.036009 -8.309330 5.213161 0.458824 0.270588 0.223529
134
+ v 8.222100 -6.896640 5.293671 0.498039 0.305882 0.247059
135
+ v 5.315060 7.954630 2.505800 0.662745 0.400000 0.321569
136
+ v 5.391600 3.642640 -0.798212 0.729412 0.454902 0.372549
137
+ v 3.235490 4.316670 -1.382350 0.764706 0.482353 0.396078
138
+ v 5.431940 1.019950 -1.779530 0.788235 0.521569 0.443137
139
+ v 3.012540 0.964488 -2.729010 0.847059 0.572549 0.494118
140
+ v 3.567950 -7.050370 -0.455861 0.772549 0.517647 0.439216
141
+ v 0.254061 -9.470920 1.815530 0.694118 0.466667 0.388235
142
+ v 3.185970 -9.021570 1.994320 0.686275 0.458824 0.380392
143
+ v 3.347260 -9.952950 5.307401 0.568627 0.360784 0.294118
144
+ v 11.644599 -4.814710 6.525851 0.666667 0.439216 0.360784
145
+ v 10.245199 -6.916610 8.546041 0.431373 0.254902 0.207843
146
+ v 14.322199 -5.140650 10.096601 0.682353 0.439216 0.360784
147
+ v 13.032799 -7.158690 11.593801 0.564706 0.352941 0.286275
148
+ v 16.428497 -5.656990 13.658102 0.650980 0.396078 0.321569
149
+ v 15.041399 -7.855270 14.466301 0.674510 0.423529 0.345098
150
+ v 17.493698 -6.043210 17.118502 0.572549 0.313725 0.254902
151
+ v 16.415197 -8.234700 17.133102 0.619608 0.356863 0.290196
152
+ v 0.234891 4.747230 -1.584250 0.788235 0.498039 0.407843
153
+ v 7.301090 1.952910 -0.069825 0.709804 0.443137 0.364706
154
+ v 9.047320 -0.970925 1.557191 0.690196 0.443137 0.368627
155
+ v 9.465290 3.177850 3.547511 0.596078 0.352941 0.282353
156
+ v 17.660997 -6.569220 20.282202 0.505882 0.258824 0.215686
157
+ v 16.557198 -9.033780 19.871101 0.552941 0.290196 0.235294
158
+ v 20.394499 -10.617700 24.778902 0.776471 0.517647 0.427451
159
+ v 19.250498 -13.611500 23.636002 0.780392 0.513725 0.423529
160
+ v 11.990899 1.078080 6.089581 0.576471 0.337255 0.266667
161
+ v 12.157999 -1.685630 5.705281 0.647059 0.403922 0.329412
162
+ v 8.839929 9.251840 7.807421 0.568627 0.341176 0.262745
163
+ v 8.096309 14.803000 11.047301 0.600000 0.368627 0.290196
164
+ v 11.552299 11.023700 14.935801 0.584314 0.360784 0.278431
165
+ v 8.089608 23.007601 17.162300 0.607843 0.376471 0.290196
166
+ v 12.042598 18.267500 20.407701 0.627451 0.396078 0.305882
167
+ v 21.344799 3.444300 24.364801 0.760784 0.525490 0.435294
168
+ v 10.378798 43.596600 19.092800 0.760784 0.545098 0.439216
169
+ v 11.674199 50.650799 15.859901 0.796078 0.596078 0.509804
170
+ v 54.439495 58.174599 40.267605 0.525490 0.352941 0.262745
171
+ v 56.231796 64.326599 44.901005 0.525490 0.349020 0.258824
172
+ v 20.091297 46.555901 20.626602 0.615686 0.435294 0.352941
173
+ v 12.458998 40.488800 23.149502 0.682353 0.470588 0.364706
174
+ v 11.517699 58.712601 14.732701 0.894118 0.666667 0.576471
175
+ v 20.941198 69.476898 17.756903 0.811765 0.568627 0.458824
176
+ v 28.594099 70.756203 20.988201 0.768627 0.537255 0.427451
177
+ v 36.831398 72.183800 26.344303 0.705882 0.490196 0.380392
178
+ v 44.649097 71.571800 32.518906 0.650980 0.447059 0.337255
179
+ v 44.312595 65.052498 30.244703 0.650980 0.450980 0.349020
180
+ v 51.160194 68.888397 38.786102 0.580392 0.392157 0.290196
181
+ v 50.121696 63.216999 35.800903 0.592157 0.400000 0.301961
182
+ v 29.676498 38.193501 27.577202 0.278431 0.203922 0.172549
183
+ v 32.242195 35.520000 28.930403 0.176471 0.149020 0.133333
184
+ v 36.059795 38.007198 28.101904 0.337255 0.254902 0.223529
185
+ v 29.195498 28.762300 30.062502 0.537255 0.407843 0.376471
186
+ v 35.387295 30.454100 30.872303 0.494118 0.427451 0.419608
187
+ v 40.619995 36.623299 30.930103 0.376471 0.290196 0.262745
188
+ v 40.689995 30.856199 33.447403 0.560784 0.435294 0.415686
189
+ v 46.166798 34.721901 35.938004 0.427451 0.274510 0.219608
190
+ v 24.791199 28.750900 30.347101 0.631373 0.439216 0.380392
191
+ v 23.558298 30.911301 30.865202 0.654902 0.525490 0.490196
192
+ v 23.990099 35.138500 30.007702 0.588235 0.525490 0.505882
193
+ v 18.925999 31.543200 29.964102 0.607843 0.411765 0.345098
194
+ v 22.978798 22.609301 29.898302 0.698039 0.478431 0.415686
195
+ v 44.176495 24.024099 36.367702 0.666667 0.462745 0.368627
196
+ v 48.844097 28.759600 40.696102 0.568627 0.372549 0.290196
197
+ v 29.935898 20.776899 30.510502 0.764706 0.541176 0.462745
198
+ v 37.725395 21.069901 32.600403 0.768627 0.552941 0.450980
199
+ v 43.673397 41.639000 29.921003 0.639216 0.447059 0.364706
200
+ v 30.249598 43.423698 24.863802 0.698039 0.498039 0.396078
201
+ v 21.971298 38.089298 28.511002 0.552941 0.376471 0.305882
202
+ v 18.851599 37.250599 29.058102 0.600000 0.403922 0.317647
203
+ v 26.141699 38.694302 27.701101 0.415686 0.305882 0.258824
204
+ v 24.366098 42.716400 25.250301 0.670588 0.470588 0.364706
205
+ v 33.047497 40.919201 25.876904 0.588235 0.415686 0.341176
206
+ v 38.202995 45.220299 25.513803 0.741176 0.541176 0.447059
207
+ v 37.181396 41.326099 26.587204 0.592157 0.415686 0.341176
208
+ v 40.767696 39.773300 28.946104 0.533333 0.368627 0.305882
209
+ v 17.566698 40.536701 25.680403 0.682353 0.478431 0.372549
210
+ v 12.599898 34.387402 26.919203 0.635294 0.439216 0.356863
211
+ v 9.244298 36.241699 22.858601 0.670588 0.454902 0.349020
212
+ v 42.106094 27.525101 34.601604 0.588235 0.396078 0.337255
213
+ v 9.833448 28.316700 23.639999 0.592157 0.392157 0.298039
214
+ v 18.639698 24.671700 29.695803 0.650980 0.447059 0.376471
215
+ v 17.292599 20.688499 27.482101 0.654902 0.439216 0.341176
216
+ v 13.333098 24.688499 26.033302 0.607843 0.407843 0.305882
217
+ v 22.784698 17.533800 28.735502 0.721569 0.498039 0.407843
218
+ v 30.601099 15.688600 30.290201 0.780392 0.560784 0.466667
219
+ v 41.169495 16.181299 33.723103 0.792157 0.564706 0.458824
220
+ v 47.120296 20.681999 37.970406 0.709804 0.501961 0.400000
221
+ v 51.931698 25.841200 43.142902 0.639216 0.443137 0.341176
222
+ v 52.340096 32.697899 43.622303 0.576471 0.384314 0.298039
223
+ v 55.356895 32.597599 46.411205 0.619608 0.439216 0.341176
224
+ v 53.222797 37.287899 42.089905 0.568627 0.392157 0.301961
225
+ v 29.678698 24.733801 30.073902 0.717647 0.501961 0.431373
226
+ v 36.489197 25.085699 31.599504 0.698039 0.498039 0.427451
227
+ v 7.209608 -47.131500 19.961300 0.694118 0.474510 0.392157
228
+ v 14.446698 -46.892300 22.922901 0.701961 0.486275 0.392157
229
+ v 14.611198 -50.406300 25.080801 0.741176 0.521569 0.407843
230
+ v 59.776695 32.152901 51.172405 0.615686 0.435294 0.333333
231
+ v 55.757698 22.840000 45.449802 0.650980 0.447059 0.341176
232
+ v 50.009796 17.205099 38.838005 0.725490 0.501961 0.396078
233
+ v 41.713795 8.508140 32.452805 0.839216 0.580392 0.486275
234
+ v 57.126797 40.041698 45.909004 0.552941 0.380392 0.294118
235
+ v 60.104397 43.092098 50.342705 0.509804 0.345098 0.262745
236
+ v 54.672398 42.407398 40.515404 0.556863 0.380392 0.305882
237
+ v 56.906197 46.631001 42.925304 0.462745 0.305882 0.239216
238
+ v 51.822495 43.786900 36.258904 0.596078 0.415686 0.337255
239
+ v 54.271397 50.864399 37.835804 0.419608 0.282353 0.223529
240
+ v 47.592297 46.765598 30.486204 0.627451 0.454902 0.384314
241
+ v 49.821495 53.293598 31.830803 0.427451 0.298039 0.243137
242
+ v 42.391796 49.445400 25.742804 0.607843 0.454902 0.388235
243
+ v 44.034695 54.943100 26.506004 0.443137 0.317647 0.266667
244
+ v 36.751995 50.112900 22.968603 0.545098 0.407843 0.349020
245
+ v 37.753296 55.541100 22.525805 0.490196 0.364706 0.313725
246
+ v 28.692497 48.042801 21.970001 0.600000 0.435294 0.356863
247
+ v 31.105598 56.180599 19.828001 0.596078 0.450980 0.392157
248
+ v 36.435097 81.925400 28.781404 0.682353 0.470588 0.364706
249
+ v 45.338295 80.322098 35.563904 0.603922 0.411765 0.305882
250
+ v 24.592999 80.095299 21.969002 0.772549 0.541176 0.427451
251
+ v 11.213599 69.043297 15.977401 0.835294 0.588235 0.474510
252
+ v 11.825998 81.413200 18.962801 0.803922 0.564706 0.447059
253
+ v 21.538898 53.003700 17.177603 0.588235 0.439216 0.380392
254
+ v -0.179365 43.542702 17.002100 0.898039 0.666667 0.564706
255
+ v 5.625159 37.419102 18.996799 0.803922 0.576471 0.466667
256
+ v 4.198629 23.955999 12.407200 0.686275 0.435294 0.345098
257
+ v 14.535299 -2.114900 9.443011 0.631373 0.380392 0.309804
258
+ v 15.685598 8.142320 20.454601 0.658824 0.427451 0.337255
259
+ v 30.598497 1.488610 27.147802 0.839216 0.576471 0.490196
260
+ v 29.978397 -6.397050 26.571701 0.894118 0.635294 0.545098
261
+ v 41.297398 -1.405200 31.022003 0.854902 0.596078 0.509804
262
+ v 36.111397 -6.540340 28.005903 0.882353 0.623529 0.537255
263
+ v 44.276794 -9.991890 32.788902 0.811765 0.568627 0.478431
264
+ v 36.580196 -12.147500 28.853804 0.874510 0.623529 0.525490
265
+ v 23.545498 26.550501 30.193302 0.670588 0.454902 0.392157
266
+ v 7.536978 -50.700600 22.940800 0.737255 0.513725 0.407843
267
+ v 0.049966 -50.745201 22.357901 0.713725 0.490196 0.403922
268
+ v -0.059187 -47.707500 19.745001 0.662745 0.450980 0.376471
269
+ v 13.614799 -61.189201 26.770203 0.772549 0.549020 0.447059
270
+ v 7.402448 -54.763500 24.320801 0.792157 0.549020 0.443137
271
+ v 5.676798 -60.044102 24.120001 0.815686 0.568627 0.478431
272
+ v 0.007680 -58.305000 23.528999 0.823529 0.568627 0.478431
273
+ v 14.550098 -55.003899 26.621601 0.780392 0.549020 0.431373
274
+ v 20.750698 -49.841400 28.390602 0.729412 0.505882 0.396078
275
+ v 14.341599 -43.669201 21.142101 0.690196 0.443137 0.392157
276
+ v 9.106318 -44.220402 18.280300 0.749020 0.454902 0.427451
277
+ v 4.624769 -44.514198 17.213200 0.768627 0.458824 0.439216
278
+ v 13.494699 1.203290 9.375581 0.541176 0.305882 0.247059
279
+ v 17.587399 -3.090150 17.170603 0.521569 0.282353 0.231373
280
+ v 15.390899 0.616895 13.529201 0.525490 0.290196 0.239216
281
+ v 16.498499 -2.610490 13.351402 0.580392 0.333333 0.270588
282
+ v 0.114789 -17.205601 13.556900 0.803922 0.576471 0.490196
283
+ v 0.213039 -10.739900 5.333460 0.631373 0.419608 0.345098
284
+ v 0.155695 9.698840 1.605760 0.737255 0.458824 0.372549
285
+ v 63.699497 35.875702 57.276005 0.541176 0.364706 0.274510
286
+ v 62.952995 26.737499 54.915302 0.588235 0.400000 0.301961
287
+ v 62.913197 46.593300 56.027405 0.486275 0.321569 0.239216
288
+ v 66.067696 49.149700 63.298607 0.435294 0.282353 0.207843
289
+ v 67.025894 36.883900 64.329010 0.478431 0.313725 0.235294
290
+ v 66.947090 22.464199 62.047707 0.505882 0.325490 0.243137
291
+ v 62.186794 10.766600 50.973103 0.576471 0.376471 0.290196
292
+ v 68.964989 11.545400 68.556404 0.415686 0.266667 0.200000
293
+ v 64.644791 3.438430 56.958504 0.498039 0.317647 0.243137
294
+ v 7.315678 30.263700 20.278500 0.635294 0.407843 0.309804
295
+ v 16.478199 14.480500 23.730602 0.674510 0.435294 0.341176
296
+ v 22.498598 11.176800 26.488401 0.752941 0.505882 0.411765
297
+ v 30.975899 9.046680 28.818901 0.800000 0.545098 0.447059
298
+ v 59.705097 18.493999 48.250504 0.619608 0.415686 0.317647
299
+ v 53.774796 10.607700 40.580803 0.741176 0.505882 0.411765
300
+ v 4.194539 31.168200 16.627800 0.733333 0.498039 0.388235
301
+ v -0.049233 31.606899 15.159500 0.800000 0.552941 0.435294
302
+ v 60.551994 58.758701 51.876305 0.482353 0.313725 0.231373
303
+ v 64.570694 60.979000 60.018402 0.403922 0.266667 0.196078
304
+ v 58.582897 51.884102 46.769802 0.482353 0.317647 0.239216
305
+ v 58.461395 70.455803 49.594505 0.466667 0.313725 0.231373
306
+ v 52.436497 76.538399 42.343403 0.533333 0.356863 0.262745
307
+ v -0.208444 49.913601 15.256100 0.917647 0.698039 0.611765
308
+ v -0.124523 58.086498 14.326200 0.905882 0.674510 0.584314
309
+ v 0.274219 81.382401 18.191799 0.819608 0.576471 0.458824
310
+ v 0.481933 93.290398 21.740499 0.725490 0.498039 0.384314
311
+ v 12.405998 93.661400 22.874903 0.713725 0.486275 0.376471
312
+ v 24.880598 93.906502 26.578302 0.658824 0.447059 0.341176
313
+ v 36.480595 93.078102 32.634003 0.576471 0.388235 0.294118
314
+ v 46.004696 90.203003 39.649605 0.505882 0.345098 0.258824
315
+ v 53.584496 85.144096 46.494904 0.450980 0.305882 0.223529
316
+ v 62.545998 71.367798 56.403603 0.364706 0.250980 0.188235
317
+ v 59.255596 78.845100 52.443905 0.400000 0.274510 0.203922
318
+ v 61.191795 85.050301 57.241005 0.333333 0.235294 0.180392
319
+ v 65.452393 75.230003 61.807304 0.286275 0.207843 0.160784
320
+ v 68.381790 63.713902 67.643311 0.266667 0.188235 0.149020
321
+ v 69.324196 50.443100 71.447411 0.341176 0.227451 0.172549
322
+ v 70.128990 37.903400 72.923409 0.360784 0.239216 0.180392
323
+ v 70.487595 24.768299 72.393105 0.396078 0.250980 0.192157
324
+ v 10.803699 -24.072800 15.435301 0.713725 0.501961 0.407843
325
+ v 15.684198 -24.840200 18.155502 0.698039 0.494118 0.403922
326
+ v 14.923498 -28.631399 17.459002 0.729412 0.498039 0.431373
327
+ v 19.121199 -30.573601 20.995502 0.694118 0.478431 0.403922
328
+ v 21.119598 -26.506599 21.583101 0.701961 0.509804 0.423529
329
+ v 36.499996 -22.712601 30.213703 0.811765 0.572549 0.466667
330
+ v 40.448395 -36.176701 36.400604 0.725490 0.509804 0.407843
331
+ v 44.144596 -32.603699 38.731205 0.705882 0.490196 0.392157
332
+ v 38.536495 -47.817600 40.317505 0.666667 0.474510 0.364706
333
+ v 46.546295 -37.311100 43.387104 0.635294 0.439216 0.349020
334
+ v 50.373398 -34.235699 47.127705 0.611765 0.423529 0.333333
335
+ v 49.724796 -40.818298 50.185303 0.588235 0.403922 0.317647
336
+ v 49.255295 -27.889099 42.907104 0.658824 0.454902 0.360784
337
+ v 44.257797 -23.479799 35.807602 0.752941 0.525490 0.427451
338
+ v 40.645798 -27.765900 34.063705 0.764706 0.537255 0.431373
339
+ v 40.754898 -19.093399 32.012905 0.815686 0.576471 0.478431
340
+ v 10.416199 -27.973200 14.961201 0.756863 0.498039 0.443137
341
+ v 0.075350 -28.306400 12.898400 0.803922 0.521569 0.466667
342
+ v 0.092755 -24.430799 13.505000 0.772549 0.529412 0.443137
343
+ v 0.110785 -20.513000 13.908800 0.807843 0.588235 0.501961
344
+ v 0.085609 -54.512001 23.610901 0.784314 0.537255 0.443137
345
+ v 20.909399 -54.946800 30.047201 0.729412 0.509804 0.392157
346
+ v 35.645298 -55.715099 42.223003 0.623529 0.439216 0.337255
347
+ v 49.814896 -48.565498 56.933704 0.517647 0.356863 0.274510
348
+ v 47.977795 -55.414200 62.039703 0.443137 0.301961 0.231373
349
+ v 55.688496 -28.994600 53.447903 0.560784 0.380392 0.301961
350
+ v 55.983391 -43.000198 65.692207 0.450980 0.305882 0.239216
351
+ v 56.362797 -36.061699 59.322903 0.517647 0.349020 0.274510
352
+ v 57.892796 -19.573200 52.540302 0.560784 0.376471 0.294118
353
+ v 70.365593 -2.993800 89.379608 0.321569 0.211765 0.164706
354
+ v 71.177193 8.937180 81.271606 0.321569 0.211765 0.164706
355
+ v 72.558990 10.622100 91.867805 0.298039 0.200000 0.156863
356
+ v 66.125992 -21.471800 81.920410 0.341176 0.223529 0.168627
357
+ v 67.528091 -10.306600 77.117210 0.364706 0.239216 0.180392
358
+ v 61.701691 -27.660801 67.740509 0.443137 0.294118 0.227451
359
+ v 68.337189 -0.022244 71.967606 0.380392 0.243137 0.188235
360
+ v 63.424397 -15.896200 64.452606 0.443137 0.290196 0.219608
361
+ v 68.125694 -16.648800 92.619408 0.301961 0.200000 0.156863
362
+ v 63.768192 -32.212200 86.796310 0.305882 0.203922 0.156863
363
+ v 61.167294 -36.372501 75.628105 0.376471 0.250980 0.192157
364
+ v 59.626293 -41.868698 80.668411 0.333333 0.223529 0.172549
365
+ v 64.162796 -6.066620 60.428703 0.454902 0.294118 0.223529
366
+ v 57.393696 -11.239100 47.991703 0.611765 0.411765 0.329412
367
+ v 72.524994 24.387699 82.025009 0.282353 0.188235 0.145098
368
+ v 73.856789 35.723499 88.540108 0.105882 0.074510 0.062745
369
+ v 73.683792 23.761801 91.300209 0.243137 0.164706 0.129412
370
+ v 74.501190 30.125500 94.839706 0.094118 0.062745 0.050980
371
+ v 74.034592 22.480499 96.303810 0.141176 0.098039 0.078431
372
+ v 72.831192 7.859240 98.770004 0.149020 0.101961 0.082353
373
+ v 69.296593 -13.425300 99.241905 0.305882 0.200000 0.160784
374
+ v 71.395790 -3.606020 100.302010 0.325490 0.215686 0.172549
375
+ v 71.129791 -7.143250 103.242004 0.188235 0.125490 0.101961
376
+ v 68.107590 -18.211399 101.004005 0.133333 0.086275 0.070588
377
+ v 72.363594 -0.137348 102.838005 0.176471 0.117647 0.094118
378
+ v 46.213596 99.739601 44.501404 0.388235 0.266667 0.200000
379
+ v 54.685898 92.834099 51.120205 0.376471 0.258824 0.192157
380
+ v 55.596695 97.970802 54.777103 0.294118 0.207843 0.160784
381
+ v 59.781796 92.442200 58.018204 0.125490 0.090196 0.066667
382
+ v 50.586895 101.808998 50.572002 0.172549 0.121569 0.094118
383
+ v 43.422997 104.478996 44.205505 0.184314 0.125490 0.098039
384
+ v 72.007690 49.799099 78.898109 0.250980 0.176471 0.137255
385
+ v 73.057594 49.127201 82.269409 0.094118 0.066667 0.054902
386
+ v 49.949097 58.855202 33.782906 0.564706 0.388235 0.301961
387
+ v 44.336697 60.042801 28.311203 0.603922 0.419608 0.337255
388
+ v 37.959198 59.937000 23.450504 0.674510 0.482353 0.400000
389
+ v 4.464459 16.161301 7.486950 0.682353 0.423529 0.341176
390
+ v 0.094371 16.649401 6.087460 0.745098 0.466667 0.376471
391
+ v 0.014745 24.425800 10.934700 0.745098 0.482353 0.384314
392
+ v 71.478493 58.516998 75.568504 0.105882 0.074510 0.058824
393
+ v 68.260490 72.263603 66.620407 0.137255 0.101961 0.082353
394
+ v 70.731094 66.735497 71.686806 0.109804 0.082353 0.066667
395
+ v 72.507889 38.181301 81.341507 0.254902 0.176471 0.137255
396
+ v 64.500496 82.174896 61.573006 0.149020 0.109804 0.082353
397
+ v 55.767296 99.280998 55.781605 0.145098 0.101961 0.078431
398
+ v 12.876298 100.102997 25.744701 0.317647 0.215686 0.164706
399
+ v 0.286601 -4.793040 -2.721520 0.894118 0.643137 0.568627
400
+ v 64.638489 -29.722000 98.167007 0.121569 0.082353 0.062745
401
+ v 58.149193 -45.228298 86.664307 0.290196 0.196078 0.152941
402
+ v 62.356594 -36.605999 93.365707 0.274510 0.184314 0.141176
403
+ v 60.716892 -40.186600 93.595604 0.113725 0.078431 0.058824
404
+ v 56.109493 -48.650299 86.931511 0.141176 0.098039 0.074510
405
+ v 49.385094 -57.278099 77.067108 0.160784 0.109804 0.082353
406
+ v 66.355392 -24.387800 96.374504 0.270588 0.184314 0.141176
407
+ v 37.257298 34.215500 30.609003 0.415686 0.392157 0.388235
408
+ v 39.520298 33.790501 31.976805 0.529412 0.494118 0.490196
409
+ v 27.428999 33.649700 29.901602 0.372549 0.333333 0.309804
410
+ v 23.755198 -35.746101 28.257301 0.482353 0.278431 0.235294
411
+ v 3.793149 -35.116299 16.927900 0.600000 0.278431 0.294118
412
+ v 3.855958 -38.129200 17.080799 0.756863 0.376471 0.407843
413
+ v -0.023884 -38.223301 16.909401 0.749020 0.368627 0.400000
414
+ v 8.071998 -35.035198 18.102501 0.588235 0.266667 0.286275
415
+ v 8.431998 -37.966801 18.149799 0.717647 0.352941 0.384314
416
+ v 13.239598 -35.231899 20.689901 0.545098 0.262745 0.274510
417
+ v 13.372499 -37.816101 20.728703 0.631373 0.317647 0.337255
418
+ v 17.666399 -35.273201 23.658503 0.447059 0.227451 0.227451
419
+ v 17.640099 -37.751598 24.088802 0.556863 0.282353 0.286275
420
+ v 21.365198 -34.941399 26.083202 0.478431 0.266667 0.231373
421
+ v 21.738897 -38.277302 27.387302 0.564706 0.325490 0.298039
422
+ v 21.377197 -34.903000 26.050001 0.490196 0.278431 0.239216
423
+ v -0.125513 -44.742699 17.141100 0.749020 0.454902 0.419608
424
+ v 14.317698 -31.063400 17.972801 0.662745 0.403922 0.364706
425
+ v 6.533319 -27.864201 13.520501 0.788235 0.505882 0.458824
426
+ v 17.674997 -35.227402 23.629501 0.427451 0.219608 0.211765
427
+ v 18.364597 -33.324001 22.496202 0.580392 0.341176 0.301961
428
+ v 13.245798 -35.168499 20.655602 0.537255 0.258824 0.270588
429
+ v 13.862498 -33.057598 19.452902 0.596078 0.333333 0.313725
430
+ v 8.065038 -34.963299 18.048201 0.580392 0.270588 0.282353
431
+ v 9.277578 -32.971199 17.116100 0.631373 0.349020 0.337255
432
+ v 3.799159 -35.048901 16.841700 0.600000 0.278431 0.294118
433
+ v 5.629269 -33.251099 16.003500 0.643137 0.349020 0.341176
434
+ v 2.758119 -33.165501 15.103900 0.650980 0.345098 0.341176
435
+ v 0.038323 -35.330101 16.649599 0.396078 0.176471 0.192157
436
+ v 0.067189 -33.274799 14.942100 0.662745 0.345098 0.352941
437
+ v 2.880549 -31.155199 13.597900 0.701961 0.388235 0.380392
438
+ v 5.936328 -30.985800 14.264301 0.694118 0.396078 0.380392
439
+ v 4.098669 -41.269699 16.459999 0.811765 0.458824 0.486275
440
+ v 8.892108 -41.014599 17.645000 0.760784 0.427451 0.450980
441
+ v 9.781240 -30.931801 15.664701 0.682353 0.400000 0.376471
442
+ v 13.905798 -40.587799 20.457802 0.658824 0.360784 0.364706
443
+ v 18.077698 -39.992001 24.048601 0.603922 0.341176 0.325490
444
+ v 0.069898 -31.269300 13.405600 0.725490 0.411765 0.407843
445
+ v 37.322296 65.013603 24.625504 0.709804 0.498039 0.396078
446
+ v 29.652199 63.115200 19.714302 0.780392 0.560784 0.466667
447
+ v 21.287199 60.616798 16.368002 0.847059 0.623529 0.533333
448
+ v 0.127883 -14.200400 12.254200 0.741176 0.509804 0.435294
449
+ v 0.278404 1.040420 -3.071150 0.870588 0.596078 0.513725
450
+ v -0.116712 37.803699 17.313200 0.882353 0.650980 0.533333
451
+ v 0.279360 -7.378550 -0.992634 0.819608 0.560784 0.478431
452
+ v 0.046502 68.758400 15.460200 0.854902 0.607843 0.494118
453
+ v 0.599951 99.454498 24.243299 0.349020 0.235294 0.180392
454
+ v 0.031221 -35.395699 16.746401 0.458824 0.203922 0.219608
455
+ v -0.106864 -41.376099 16.290199 0.800000 0.447059 0.474510
456
+ v -53.841106 -48.983299 71.426689 0.407843 0.274510 0.215686
457
+ v -51.275307 -53.996498 75.538391 0.368627 0.247059 0.192157
458
+ v -44.535206 -60.645199 65.560791 0.411765 0.274510 0.211765
459
+ v -18.750103 -74.796997 35.786999 0.529412 0.372549 0.298039
460
+ v -14.085703 -77.391403 34.978100 0.509804 0.364706 0.290196
461
+ v -11.957403 -73.963402 30.096098 0.635294 0.450980 0.368627
462
+ v -6.566503 -77.262100 30.449800 0.596078 0.431373 0.349020
463
+ v -7.564453 -78.871101 33.695099 0.501961 0.360784 0.290196
464
+ v -22.016403 -70.478699 35.529198 0.588235 0.415686 0.329412
465
+ v -17.863401 -68.837303 30.791098 0.674510 0.478431 0.388235
466
+ v -39.540703 -65.852203 65.266602 0.180392 0.121569 0.090196
467
+ v -33.939205 -69.790604 58.118694 0.388235 0.262745 0.200000
468
+ v -31.925804 -67.925903 48.449497 0.458824 0.317647 0.239216
469
+ v -38.444904 -64.204102 56.125298 0.450980 0.305882 0.231373
470
+ v -28.939505 -72.407097 50.816597 0.392157 0.270588 0.203922
471
+ v -23.188004 -74.982597 43.634598 0.415686 0.290196 0.223529
472
+ v -26.559404 -70.188103 41.544697 0.505882 0.352941 0.270588
473
+ v -24.695004 -75.705597 50.416195 0.364706 0.250980 0.192157
474
+ v -16.072004 -78.604698 40.981701 0.403922 0.282353 0.223529
475
+ v -17.844904 -79.063103 47.658199 0.360784 0.250980 0.196078
476
+ v -29.056807 -73.493698 56.917194 0.176471 0.117647 0.090196
477
+ v -10.376904 -81.684601 48.519402 0.168627 0.121569 0.101961
478
+ v -19.158804 -78.889801 51.744801 0.176471 0.121569 0.094118
479
+ v -9.669264 -81.344200 44.934101 0.376471 0.274510 0.223529
480
+ v -27.571703 -64.815102 39.005997 0.603922 0.423529 0.329412
481
+ v -33.198803 -61.133202 43.968197 0.576471 0.403922 0.305882
482
+ v -38.691704 -59.988998 50.588497 0.525490 0.364706 0.274510
483
+ v -42.734406 -58.145699 55.489697 0.501961 0.341176 0.258824
484
+ v -8.533234 -80.387604 38.906601 0.407843 0.294118 0.239216
485
+ v -11.915502 -67.795502 26.995598 0.745098 0.529412 0.443137
486
+ v -23.853804 -66.357597 35.367195 0.635294 0.447059 0.352941
487
+ v -34.301003 104.745003 38.021896 0.207843 0.141176 0.109804
488
+ v -35.090004 101.537003 36.596096 0.427451 0.282353 0.215686
489
+ v -26.006802 101.713997 31.525198 0.270588 0.176471 0.133333
490
+ v -59.540703 -0.172551 48.112595 0.619608 0.403922 0.325490
491
+ v -50.470104 -9.587020 38.842495 0.729412 0.490196 0.411765
492
+ v -52.236305 -0.444375 39.310497 0.745098 0.501961 0.419608
493
+ v -29.805405 -56.547798 37.997498 0.666667 0.474510 0.364706
494
+ v -26.022703 -54.744801 34.242695 0.694118 0.490196 0.376471
495
+ v -26.218403 -49.663700 32.767998 0.717647 0.498039 0.388235
496
+ v -25.394102 -44.041801 30.750198 0.729412 0.505882 0.396078
497
+ v -31.448503 -44.790001 34.639797 0.737255 0.525490 0.403922
498
+ v -32.419804 -50.899601 37.823597 0.690196 0.490196 0.376471
499
+ v -21.044302 -62.170700 31.980398 0.705882 0.498039 0.400000
500
+ v -26.501503 -59.568001 36.049995 0.670588 0.474510 0.368627
501
+ v -44.034306 -51.844898 51.117294 0.560784 0.384314 0.294118
502
+ v -43.882004 -45.489799 45.821396 0.611765 0.419608 0.329412
503
+ v -39.261204 -54.099098 46.284496 0.592157 0.411765 0.309804
504
+ v -42.625404 -40.450100 41.156296 0.662745 0.458824 0.360784
505
+ v -38.801704 -42.761002 38.411594 0.713725 0.501961 0.396078
506
+ v -52.231606 -19.653799 44.279896 0.658824 0.443137 0.356863
507
+ v -46.410305 -16.803400 36.662895 0.756863 0.517647 0.427451
508
+ v -33.261505 -35.711102 31.876297 0.741176 0.537255 0.423529
509
+ v -32.671204 -40.674500 33.693596 0.749020 0.545098 0.423529
510
+ v -35.453705 -44.188400 36.643997 0.733333 0.529412 0.411765
511
+ v -27.096502 -39.330601 30.955198 0.713725 0.498039 0.384314
512
+ v -21.293402 -21.040701 22.753899 0.729412 0.498039 0.407843
513
+ v -23.889301 -17.153200 25.090498 0.796078 0.537255 0.431373
514
+ v -27.442001 -24.677700 25.678598 0.741176 0.529412 0.435294
515
+ v -27.894802 -35.143299 29.500797 0.698039 0.494118 0.384314
516
+ v -24.245901 -32.390999 25.918598 0.666667 0.470588 0.380392
517
+ v -26.250002 -28.942699 25.473698 0.721569 0.529412 0.431373
518
+ v -22.010002 -41.590900 27.971397 0.670588 0.450980 0.364706
519
+ v -20.023802 -45.808498 26.881199 0.705882 0.486275 0.384314
520
+ v -18.923801 -42.662899 25.164799 0.666667 0.435294 0.364706
521
+ v -28.864202 -21.376200 26.642797 0.784314 0.545098 0.443137
522
+ v -26.229301 -16.210501 26.192198 0.827451 0.568627 0.454902
523
+ v -30.681902 -16.933201 27.620897 0.858824 0.603922 0.490196
524
+ v -15.621302 -20.221901 19.470098 0.690196 0.470588 0.380392
525
+ v -16.465702 -15.840100 21.345999 0.729412 0.474510 0.384314
526
+ v -22.337402 -3.399040 25.406399 0.741176 0.494118 0.396078
527
+ v -21.458002 -7.348170 25.506098 0.721569 0.474510 0.380392
528
+ v -18.854101 -4.005630 23.601898 0.533333 0.301961 0.250980
529
+ v -26.091501 -11.087000 26.476297 0.878431 0.623529 0.513725
530
+ v -23.841803 -13.780800 25.798899 0.831373 0.572549 0.458824
531
+ v -3.088731 -28.148701 13.002100 0.811765 0.521569 0.478431
532
+ v -3.510681 -24.156099 13.543200 0.788235 0.541176 0.450980
533
+ v -7.061972 -23.912500 14.032299 0.764706 0.529412 0.435294
534
+ v -3.687661 -20.046000 14.031400 0.807843 0.584314 0.494118
535
+ v -9.043321 -19.022600 15.774699 0.705882 0.494118 0.403922
536
+ v -2.931611 -17.201000 13.721800 0.807843 0.584314 0.494118
537
+ v -4.743171 -14.022100 13.188100 0.737255 0.505882 0.431373
538
+ v -30.459501 -31.690300 28.703999 0.729412 0.537255 0.435294
539
+ v -36.833103 -39.026501 35.269897 0.749020 0.537255 0.423529
540
+ v -36.962105 -31.691099 32.883995 0.741176 0.517647 0.411765
541
+ v -32.433002 -26.637400 28.764599 0.749020 0.529412 0.427451
542
+ v -10.186301 -10.045900 13.821699 0.560784 0.341176 0.290196
543
+ v -3.445531 -10.998200 9.252610 0.556863 0.337255 0.278431
544
+ v -6.762481 -8.908630 9.055569 0.494118 0.294118 0.258824
545
+ v -10.854001 -7.895510 11.215299 0.427451 0.250980 0.211765
546
+ v -12.950301 -8.438200 13.560799 0.588235 0.368627 0.305882
547
+ v -14.310402 -9.532510 16.465097 0.674510 0.411765 0.333333
548
+ v -14.624502 -11.047600 19.142298 0.615686 0.345098 0.282353
549
+ v -12.154902 -13.660100 18.041199 0.662745 0.403922 0.337255
550
+ v -15.637602 -12.306800 21.315199 0.635294 0.376471 0.313725
551
+ v -16.678001 0.018672 17.475899 0.454902 0.239216 0.188235
552
+ v -14.077101 3.077540 13.715799 0.470588 0.254902 0.203922
553
+ v -15.178302 3.616140 17.563799 0.490196 0.270588 0.215686
554
+ v -11.450801 5.402890 9.661229 0.498039 0.278431 0.219608
555
+ v -12.646701 6.457730 14.109399 0.513725 0.294118 0.231373
556
+ v -17.444702 -0.924688 20.193298 0.450980 0.227451 0.184314
557
+ v -18.059002 -7.877630 23.064198 0.529412 0.286275 0.243137
558
+ v -10.368801 8.722010 10.384299 0.521569 0.301961 0.235294
559
+ v -17.744202 0.517129 21.854698 0.521569 0.294118 0.239216
560
+ v -17.907402 -3.455530 20.442198 0.458824 0.231373 0.188235
561
+ v -16.974201 -10.677600 22.292898 0.596078 0.341176 0.286275
562
+ v -2.506120 -2.028510 -3.080180 0.913725 0.674510 0.607843
563
+ v -2.469770 -4.768590 -2.486050 0.886275 0.623529 0.552941
564
+ v -5.439900 -1.886710 -1.785390 0.847059 0.584314 0.517647
565
+ v -4.991440 -4.960640 -1.139691 0.803922 0.541176 0.462745
566
+ v -7.917010 -5.451350 2.487329 0.647059 0.415686 0.341176
567
+ v -5.044560 -7.893640 1.983989 0.650980 0.415686 0.349020
568
+ v -5.685171 -8.434240 5.155859 0.486275 0.290196 0.243137
569
+ v -7.915720 -7.024910 5.173709 0.537255 0.337255 0.282353
570
+ v -5.069190 8.041960 2.428190 0.662745 0.396078 0.317647
571
+ v -5.017550 3.745630 -0.921486 0.737255 0.454902 0.372549
572
+ v -2.789870 4.372350 -1.462200 0.772549 0.486275 0.396078
573
+ v -4.999330 1.117930 -1.968431 0.792157 0.509804 0.427451
574
+ v -2.481880 1.025610 -2.840810 0.854902 0.576471 0.494118
575
+ v -3.088550 -7.134860 -0.568535 0.784314 0.529412 0.447059
576
+ v -2.741080 -9.109190 1.948480 0.694118 0.462745 0.384314
577
+ v -2.959080 -10.054000 5.285800 0.576471 0.360784 0.298039
578
+ v -11.491201 -4.921930 6.367449 0.674510 0.447059 0.372549
579
+ v -10.020901 -7.086960 8.412829 0.474510 0.290196 0.243137
580
+ v -14.259301 -5.239610 9.939149 0.690196 0.443137 0.368627
581
+ v -12.878401 -7.387150 11.456599 0.564706 0.352941 0.290196
582
+ v -16.464901 -5.716880 13.556098 0.647059 0.388235 0.317647
583
+ v -14.983801 -8.065290 14.371499 0.670588 0.415686 0.337255
584
+ v -17.583902 -6.038910 17.100498 0.560784 0.305882 0.247059
585
+ v -16.457602 -8.372230 17.068798 0.623529 0.352941 0.286275
586
+ v -6.973730 2.091660 -0.242824 0.705882 0.435294 0.356863
587
+ v -8.818600 -0.891477 1.383239 0.690196 0.439216 0.364706
588
+ v -9.290710 3.329020 3.458919 0.580392 0.337255 0.266667
589
+ v -17.710503 -6.541460 20.280298 0.498039 0.250980 0.207843
590
+ v -16.597502 -9.103660 19.840698 0.560784 0.290196 0.239216
591
+ v -20.254002 -10.584600 24.919098 0.725490 0.466667 0.380392
592
+ v -19.110601 -13.563800 23.751698 0.756863 0.490196 0.400000
593
+ v -11.853701 1.210450 5.993569 0.552941 0.313725 0.247059
594
+ v -12.033501 -1.648010 5.569239 0.631373 0.388235 0.313725
595
+ v -8.771261 9.366440 7.745239 0.549020 0.317647 0.247059
596
+ v -8.091181 14.909600 10.967199 0.588235 0.352941 0.278431
597
+ v -11.574701 11.120500 14.904899 0.564706 0.341176 0.262745
598
+ v -8.252582 23.095100 17.156300 0.592157 0.356863 0.274510
599
+ v -12.164402 18.366899 20.500298 0.607843 0.372549 0.286275
600
+ v -21.284002 3.497090 24.570698 0.768627 0.525490 0.431373
601
+ v -10.742502 43.732601 19.227800 0.772549 0.552941 0.447059
602
+ v -12.018201 50.872398 15.973799 0.796078 0.596078 0.513725
603
+ v -53.977802 58.171299 39.694695 0.501961 0.325490 0.250980
604
+ v -55.620903 64.281502 44.285595 0.509804 0.329412 0.247059
605
+ v -20.308903 46.723099 20.792599 0.607843 0.427451 0.345098
606
+ v -12.843102 40.605900 23.333698 0.694118 0.474510 0.368627
607
+ v -11.662601 58.885700 14.851099 0.890196 0.662745 0.576471
608
+ v -20.507902 69.580101 17.878298 0.800000 0.549020 0.435294
609
+ v -27.933802 70.843803 20.968597 0.749020 0.509804 0.400000
610
+ v -36.014503 72.235001 26.102497 0.690196 0.466667 0.356863
611
+ v -43.836502 71.610802 32.086895 0.631373 0.423529 0.317647
612
+ v -43.620102 65.109001 29.763796 0.635294 0.427451 0.329412
613
+ v -50.451702 68.894699 38.239597 0.564706 0.372549 0.278431
614
+ v -49.542004 63.241699 35.253395 0.576471 0.380392 0.290196
615
+ v -29.960102 38.037498 27.851099 0.282353 0.203922 0.168627
616
+ v -32.476303 35.348900 29.197298 0.176471 0.149020 0.133333
617
+ v -36.246204 37.764400 28.355696 0.329412 0.254902 0.223529
618
+ v -29.328802 28.733900 30.342098 0.529412 0.392157 0.360784
619
+ v -35.523403 30.304701 31.130497 0.482353 0.411765 0.400000
620
+ v -40.727005 36.324501 31.155497 0.392157 0.313725 0.294118
621
+ v -40.839203 30.600300 33.689297 0.568627 0.435294 0.411765
622
+ v -46.191402 34.452000 36.131695 0.427451 0.274510 0.223529
623
+ v -24.977001 28.765301 30.636297 0.627451 0.431373 0.372549
624
+ v -23.804102 30.909100 31.155798 0.686275 0.556863 0.521569
625
+ v -24.319902 35.130699 30.242397 0.592157 0.521569 0.505882
626
+ v -19.257402 31.576700 30.228998 0.611765 0.411765 0.341176
627
+ v -23.152302 22.654400 30.191898 0.721569 0.498039 0.431373
628
+ v -44.272903 23.796400 36.654297 0.666667 0.454902 0.360784
629
+ v -48.903404 28.476500 40.922897 0.552941 0.352941 0.274510
630
+ v -30.033503 20.755199 30.809198 0.784314 0.556863 0.474510
631
+ v -37.799706 20.942499 32.892296 0.772549 0.545098 0.443137
632
+ v -43.489803 41.473999 30.150797 0.639216 0.439216 0.360784
633
+ v -30.361101 43.423199 25.189299 0.698039 0.494118 0.392157
634
+ v -22.342802 38.114101 28.789198 0.560784 0.376471 0.301961
635
+ v -19.248802 37.309799 29.324799 0.603922 0.396078 0.309804
636
+ v -26.459501 38.629799 27.978798 0.427451 0.305882 0.258824
637
+ v -24.593601 42.781898 25.542498 0.670588 0.466667 0.360784
638
+ v -33.258904 40.763699 26.193096 0.592157 0.419608 0.345098
639
+ v -37.950806 45.187599 25.795197 0.741176 0.533333 0.435294
640
+ v -37.224903 41.155800 26.895596 0.592157 0.411765 0.337255
641
+ v -40.750904 39.547798 29.199097 0.537255 0.368627 0.305882
642
+ v -17.907701 40.627102 25.913097 0.686275 0.478431 0.372549
643
+ v -12.980102 34.449100 27.123398 0.639216 0.439216 0.352941
644
+ v -9.614821 36.339699 23.000999 0.678431 0.458824 0.352941
645
+ v -42.234406 27.275101 34.868195 0.588235 0.388235 0.329412
646
+ v -10.124502 28.367300 23.751200 0.580392 0.372549 0.282353
647
+ v -18.888203 24.715599 29.982798 0.658824 0.454902 0.380392
648
+ v -17.454302 20.764400 27.755598 0.639216 0.419608 0.321569
649
+ v -13.572302 24.756201 26.250998 0.592157 0.388235 0.286275
650
+ v -22.865002 17.581499 29.052998 0.733333 0.505882 0.411765
651
+ v -30.623402 15.645700 30.650799 0.803922 0.576471 0.482353
652
+ v -41.184105 16.006500 34.079998 0.796078 0.560784 0.450980
653
+ v -47.160904 20.448400 38.277298 0.705882 0.490196 0.388235
654
+ v -51.919205 25.598900 43.368195 0.623529 0.423529 0.321569
655
+ v -52.268005 32.498501 43.699497 0.568627 0.372549 0.290196
656
+ v -55.200302 32.461800 46.434196 0.611765 0.419608 0.329412
657
+ v -53.071705 37.138699 42.057297 0.576471 0.388235 0.301961
658
+ v -29.791203 24.710300 30.338198 0.729412 0.513725 0.439216
659
+ v -36.564205 24.958700 31.851896 0.698039 0.490196 0.415686
660
+ v -7.289592 -47.139000 20.103399 0.694118 0.474510 0.392157
661
+ v -14.413102 -46.868698 23.217598 0.705882 0.486275 0.392157
662
+ v -14.603202 -50.371601 25.371597 0.741176 0.517647 0.407843
663
+ v -59.491802 32.046799 51.147495 0.603922 0.415686 0.321569
664
+ v -55.639103 22.632401 45.670296 0.639216 0.431373 0.325490
665
+ v -49.984604 16.973101 39.163597 0.725490 0.494118 0.388235
666
+ v -41.621704 8.346640 32.884995 0.843137 0.576471 0.478431
667
+ v -56.876003 39.973801 45.675396 0.556863 0.372549 0.298039
668
+ v -59.767105 43.045399 49.976097 0.501961 0.329412 0.258824
669
+ v -54.420605 42.338902 40.295395 0.568627 0.384314 0.313725
670
+ v -56.593704 46.599098 42.486496 0.454902 0.294118 0.239216
671
+ v -51.546104 43.681000 36.144497 0.615686 0.423529 0.349020
672
+ v -53.910103 50.838902 37.405296 0.403922 0.266667 0.215686
673
+ v -47.176605 46.687801 30.461897 0.658824 0.470588 0.400000
674
+ v -49.335606 53.263500 31.465897 0.419608 0.286275 0.239216
675
+ v -41.835705 49.451500 25.770996 0.623529 0.458824 0.388235
676
+ v -43.368805 54.963402 26.223997 0.435294 0.305882 0.258824
677
+ v -36.252106 50.171902 23.068497 0.549020 0.400000 0.341176
678
+ v -37.054005 55.634499 22.359797 0.482353 0.352941 0.301961
679
+ v -28.583101 48.147099 22.169699 0.588235 0.423529 0.345098
680
+ v -30.643501 56.322201 19.778698 0.596078 0.443137 0.384314
681
+ v -35.441105 81.907204 28.633097 0.662745 0.443137 0.337255
682
+ v -44.335304 80.277100 35.155895 0.584314 0.388235 0.286275
683
+ v -23.805302 80.078201 22.057999 0.756863 0.517647 0.403922
684
+ v -11.024801 69.106598 16.104898 0.835294 0.584314 0.470588
685
+ v -11.198602 81.384598 19.098099 0.800000 0.556863 0.435294
686
+ v -21.602503 53.225300 17.283098 0.596078 0.443137 0.384314
687
+ v -5.917871 37.487801 19.084600 0.811765 0.580392 0.466667
688
+ v -4.247971 24.037399 12.356400 0.686275 0.435294 0.345098
689
+ v -14.467901 -2.056030 9.347089 0.611765 0.356863 0.290196
690
+ v -15.684502 8.225480 20.506998 0.647059 0.411765 0.325490
691
+ v -30.492302 1.468230 27.575397 0.847059 0.576471 0.486275
692
+ v -29.855103 -6.375450 26.988998 0.890196 0.627451 0.537255
693
+ v -41.125404 -1.490210 31.515596 0.854902 0.580392 0.494118
694
+ v -35.953903 -6.553680 28.526196 0.882353 0.615686 0.525490
695
+ v -44.049503 -10.001100 33.293495 0.819608 0.564706 0.478431
696
+ v -36.408905 -12.117100 29.324495 0.878431 0.615686 0.517647
697
+ v -23.772902 26.589300 30.467398 0.690196 0.466667 0.400000
698
+ v -7.501412 -50.686699 23.065300 0.737255 0.509804 0.403922
699
+ v -13.754702 -61.147598 27.150497 0.772549 0.545098 0.443137
700
+ v -7.330832 -54.754902 24.476400 0.796078 0.552941 0.447059
701
+ v -5.799892 -60.043400 24.272900 0.815686 0.568627 0.478431
702
+ v -14.562901 -54.969002 26.952198 0.784314 0.549020 0.431373
703
+ v -20.703901 -49.802700 28.816797 0.729412 0.501961 0.392157
704
+ v -14.287502 -43.688099 21.461899 0.698039 0.447059 0.392157
705
+ v -9.185982 -44.236801 18.529900 0.749020 0.454902 0.427451
706
+ v -4.844681 -44.535198 17.332600 0.772549 0.458824 0.443137
707
+ v -13.385301 1.321240 9.319969 0.517647 0.282353 0.223529
708
+ v -17.594803 -2.992360 17.184399 0.494118 0.258824 0.207843
709
+ v -15.316101 0.718187 13.531699 0.490196 0.262745 0.211765
710
+ v -16.484503 -2.517690 13.317098 0.556863 0.305882 0.247059
711
+ v -63.277405 35.791199 57.119396 0.525490 0.345098 0.266667
712
+ v -62.593704 26.610701 54.955097 0.576471 0.380392 0.290196
713
+ v -62.468002 46.489700 55.637897 0.466667 0.301961 0.227451
714
+ v -65.474205 48.985901 62.915993 0.419608 0.262745 0.196078
715
+ v -66.472511 36.767601 64.102196 0.454902 0.290196 0.219608
716
+ v -66.524406 22.424500 62.011292 0.490196 0.309804 0.235294
717
+ v -61.938904 10.699000 51.148296 0.568627 0.364706 0.286275
718
+ v -68.543007 11.577000 68.501892 0.411765 0.258824 0.200000
719
+ v -64.340508 3.476640 57.093597 0.498039 0.313725 0.247059
720
+ v -7.594552 30.348700 20.315800 0.627451 0.396078 0.298039
721
+ v -16.549402 14.557100 23.902597 0.662745 0.419608 0.325490
722
+ v -22.511202 11.211700 26.775698 0.764706 0.505882 0.407843
723
+ v -30.923302 8.988230 29.229298 0.815686 0.549020 0.447059
724
+ v -59.490303 18.310400 48.448795 0.607843 0.396078 0.301961
725
+ v -53.647404 10.434700 40.909695 0.737255 0.494118 0.403922
726
+ v -4.381762 31.257401 16.638100 0.737255 0.494118 0.388235
727
+ v -60.029804 58.640598 51.293797 0.462745 0.294118 0.219608
728
+ v -64.019104 60.767300 59.519794 0.392157 0.250980 0.188235
729
+ v -58.184303 51.842499 46.189598 0.458824 0.298039 0.227451
730
+ v -57.762302 70.295197 48.925396 0.447059 0.290196 0.215686
731
+ v -51.554703 76.438698 41.738796 0.513725 0.337255 0.247059
732
+ v -11.345502 93.571404 23.007797 0.709804 0.482353 0.372549
733
+ v -23.729801 93.736099 26.669699 0.647059 0.435294 0.329412
734
+ v -35.271004 92.898697 32.481598 0.556863 0.364706 0.274510
735
+ v -44.764503 89.974899 39.158897 0.482353 0.313725 0.235294
736
+ v -52.434803 84.860397 45.720497 0.427451 0.278431 0.207843
737
+ v -61.925304 71.077103 55.743397 0.360784 0.239216 0.180392
738
+ v -58.381702 78.523102 51.614697 0.380392 0.250980 0.188235
739
+ v -60.005302 84.621002 56.387897 0.313725 0.215686 0.168627
740
+ v -64.720604 74.840401 61.180397 0.278431 0.196078 0.152941
741
+ v -67.735107 63.471001 67.175995 0.274510 0.188235 0.149020
742
+ v -68.669807 50.221901 71.097496 0.333333 0.215686 0.168627
743
+ v -69.477310 37.736198 72.644493 0.352941 0.227451 0.176471
744
+ v -69.931206 24.711700 72.207596 0.388235 0.239216 0.188235
745
+ v -10.646601 -24.065701 15.460499 0.713725 0.498039 0.403922
746
+ v -15.570902 -24.833599 18.256699 0.694118 0.490196 0.400000
747
+ v -14.838702 -28.652700 17.550598 0.725490 0.498039 0.427451
748
+ v -19.051203 -30.614100 21.181898 0.694118 0.478431 0.403922
749
+ v -21.021603 -26.519899 21.785698 0.698039 0.501961 0.415686
750
+ v -36.361103 -22.694599 30.639095 0.811765 0.568627 0.462745
751
+ v -40.278202 -36.076199 36.963898 0.725490 0.509804 0.403922
752
+ v -43.906403 -32.487301 39.282295 0.705882 0.486275 0.392157
753
+ v -38.385506 -47.603401 40.941395 0.666667 0.470588 0.364706
754
+ v -46.264404 -37.117699 43.960796 0.643137 0.439216 0.349020
755
+ v -50.024704 -34.044201 47.640896 0.619608 0.419608 0.337255
756
+ v -49.385105 -40.522999 50.694595 0.596078 0.403922 0.321569
757
+ v -48.941204 -27.787399 43.411995 0.662745 0.450980 0.364706
758
+ v -44.039505 -23.420401 36.323795 0.756863 0.529412 0.431373
759
+ v -40.469105 -27.708000 34.571297 0.768627 0.537255 0.435294
760
+ v -40.584103 -19.038799 32.502396 0.819608 0.576471 0.474510
761
+ v -10.270801 -27.988501 14.987799 0.760784 0.501961 0.447059
762
+ v -20.882402 -54.889301 30.517797 0.729412 0.509804 0.392157
763
+ v -35.545204 -55.400200 42.849697 0.627451 0.439216 0.337255
764
+ v -49.520702 -48.135101 57.375698 0.533333 0.360784 0.282353
765
+ v -47.788506 -54.890400 62.359497 0.466667 0.313725 0.243137
766
+ v -55.262604 -28.814100 53.853397 0.572549 0.380392 0.305882
767
+ v -55.605106 -42.532398 65.974190 0.466667 0.313725 0.247059
768
+ v -55.941505 -35.714100 59.684597 0.529412 0.349020 0.282353
769
+ v -57.457302 -19.495899 52.872997 0.568627 0.376471 0.301961
770
+ v -69.852905 -2.797300 89.256996 0.333333 0.215686 0.168627
771
+ v -70.631210 9.026070 81.100189 0.333333 0.211765 0.164706
772
+ v -72.047607 10.667300 91.656296 0.305882 0.200000 0.160784
773
+ v -65.526306 -21.184401 81.961395 0.352941 0.227451 0.176471
774
+ v -66.953011 -10.110300 77.137192 0.368627 0.235294 0.180392
775
+ v -61.182209 -27.386299 67.969193 0.447059 0.290196 0.227451
776
+ v -67.878204 0.099053 71.940689 0.384314 0.243137 0.188235
777
+ v -62.927803 -15.756000 64.638695 0.447059 0.286275 0.223529
778
+ v -67.671104 -16.365200 92.531090 0.329412 0.215686 0.168627
779
+ v -63.259407 -31.738800 86.818794 0.321569 0.211765 0.164706
780
+ v -60.684906 -35.904400 75.737091 0.392157 0.258824 0.203922
781
+ v -59.222309 -41.333500 80.770195 0.352941 0.235294 0.184314
782
+ v -63.768204 -5.981940 60.569996 0.462745 0.294118 0.231373
783
+ v -57.061104 -11.211700 48.339996 0.615686 0.407843 0.329412
784
+ v -71.885208 24.282400 81.760689 0.294118 0.184314 0.149020
785
+ v -73.277611 35.372601 88.210091 0.105882 0.070588 0.058824
786
+ v -73.102806 23.570700 90.919289 0.247059 0.160784 0.129412
787
+ v -74.068710 29.841700 94.291794 0.094118 0.062745 0.050980
788
+ v -73.606911 22.268999 95.906693 0.137255 0.090196 0.074510
789
+ v -72.477509 7.978640 98.615295 0.152941 0.101961 0.082353
790
+ v -69.024506 -13.136300 99.036591 0.333333 0.215686 0.172549
791
+ v -71.098709 -3.316490 100.109993 0.341176 0.223529 0.180392
792
+ v -70.885109 -6.826520 103.005989 0.192157 0.125490 0.101961
793
+ v -67.819908 -17.923401 100.792992 0.145098 0.094118 0.074510
794
+ v -72.112007 0.218792 102.677994 0.180392 0.117647 0.094118
795
+ v -44.566803 99.373398 43.969296 0.364706 0.243137 0.184314
796
+ v -53.142704 92.472603 50.275696 0.345098 0.231373 0.176471
797
+ v -53.622902 97.571404 53.947998 0.262745 0.176471 0.137255
798
+ v -58.044403 92.007202 57.123795 0.121569 0.086275 0.066667
799
+ v -48.604305 101.376999 49.915794 0.156863 0.105882 0.082353
800
+ v -41.549603 104.077003 43.819798 0.172549 0.113725 0.086275
801
+ v -71.393410 49.452900 78.631592 0.247059 0.168627 0.137255
802
+ v -72.491310 48.692600 82.087189 0.094118 0.066667 0.054902
803
+ v -49.436703 58.866501 33.259895 0.545098 0.364706 0.290196
804
+ v -43.665604 60.113602 27.862896 0.592157 0.403922 0.325490
805
+ v -37.226006 60.068802 23.153795 0.670588 0.474510 0.392157
806
+ v -4.352591 16.224400 7.395720 0.682353 0.419608 0.337255
807
+ v -70.843208 58.216900 75.191589 0.101961 0.074510 0.058824
808
+ v -67.510704 71.916199 66.095291 0.133333 0.098039 0.078431
809
+ v -69.946907 66.516602 71.206192 0.109804 0.078431 0.066667
810
+ v -71.842804 37.894199 81.078789 0.254902 0.168627 0.137255
811
+ v -63.468903 81.661102 60.812897 0.137255 0.094118 0.074510
812
+ v -53.695305 98.844704 54.975895 0.129412 0.086275 0.066667
813
+ v -11.574702 100.000999 25.843098 0.317647 0.211765 0.160784
814
+ v -64.204407 -29.280001 98.039894 0.129412 0.086275 0.066667
815
+ v -57.808506 -44.627602 86.710495 0.313725 0.207843 0.164706
816
+ v -61.904308 -36.036499 93.323090 0.290196 0.192157 0.152941
817
+ v -60.306007 -39.574100 93.578392 0.125490 0.082353 0.066667
818
+ v -55.835407 -48.028099 86.987991 0.156863 0.105882 0.082353
819
+ v -49.323906 -56.665699 77.172592 0.176471 0.117647 0.090196
820
+ v -65.933609 -24.037500 96.256691 0.290196 0.188235 0.149020
821
+ v -37.446705 33.968201 30.858696 0.407843 0.384314 0.380392
822
+ v -39.703102 33.516899 32.215996 0.572549 0.533333 0.541176
823
+ v -27.674603 33.585201 30.179197 0.356863 0.309804 0.290196
824
+ v -23.713802 -35.788601 28.594898 0.482353 0.282353 0.235294
825
+ v -3.734711 -35.148399 16.966900 0.596078 0.274510 0.290196
826
+ v -3.894611 -38.155800 17.165199 0.756863 0.372549 0.407843
827
+ v -8.034562 -35.082500 18.211599 0.584314 0.262745 0.282353
828
+ v -8.452592 -38.003201 18.352200 0.713725 0.349020 0.380392
829
+ v -13.179702 -35.288399 20.849298 0.541176 0.258824 0.270588
830
+ v -13.330002 -37.864399 20.994598 0.635294 0.317647 0.337255
831
+ v -17.577602 -35.332802 23.885798 0.447059 0.223529 0.223529
832
+ v -17.583403 -37.785702 24.382399 0.549020 0.274510 0.278431
833
+ v -21.285702 -34.999901 26.378998 0.474510 0.262745 0.231373
834
+ v -21.699402 -38.312199 27.727598 0.564706 0.325490 0.294118
835
+ v -21.295403 -34.956501 26.346899 0.486275 0.270588 0.239216
836
+ v -14.235902 -31.116699 18.050999 0.666667 0.407843 0.368627
837
+ v -6.377821 -27.889299 13.529899 0.796078 0.509804 0.466667
838
+ v -17.588001 -35.285000 23.855999 0.427451 0.215686 0.211765
839
+ v -18.272202 -33.384800 22.694597 0.576471 0.337255 0.298039
840
+ v -13.185702 -35.228500 20.810898 0.533333 0.254902 0.266667
841
+ v -13.791502 -33.117401 19.544298 0.596078 0.329412 0.313725
842
+ v -8.025412 -35.018002 18.154800 0.576471 0.266667 0.282353
843
+ v -9.206802 -33.017300 17.168400 0.631373 0.345098 0.337255
844
+ v -3.731441 -35.080601 16.883200 0.596078 0.274510 0.290196
845
+ v -5.548481 -33.276402 16.041901 0.643137 0.341176 0.337255
846
+ v -2.653011 -33.159401 15.113800 0.650980 0.341176 0.341176
847
+ v -2.764671 -31.169201 13.618300 0.705882 0.388235 0.384314
848
+ v -5.831661 -30.993200 14.292099 0.698039 0.388235 0.380392
849
+ v -4.266491 -41.302898 16.592800 0.807843 0.458824 0.490196
850
+ v -8.956841 -41.049999 17.898399 0.749020 0.415686 0.439216
851
+ v -9.671581 -30.964100 15.692699 0.686275 0.400000 0.376471
852
+ v -13.864402 -40.635300 20.778898 0.654902 0.360784 0.364706
853
+ v -18.022501 -40.030899 24.391897 0.603922 0.345098 0.325490
854
+ v -36.597202 65.101097 24.312796 0.701961 0.478431 0.380392
855
+ v -29.114101 63.241402 19.640799 0.772549 0.541176 0.447059
856
+ v -21.118702 60.808300 16.469297 0.843137 0.607843 0.517647
857
+ # 845 vertices, 0 vertices normals
858
+
859
+ f 1 2 3
860
+ f 4 5 6
861
+ f 7 6 5
862
+ f 8 7 9
863
+ f 10 4 6
864
+ f 3 12 13
865
+ f 14 15 13
866
+ f 14 16 17
867
+ f 4 10 18
868
+ f 17 16 19
869
+ f 19 16 13
870
+ f 5 4 17
871
+ f 20 17 19
872
+ f 21 19 22
873
+ f 22 13 12
874
+ f 23 24 25
875
+ f 26 23 27
876
+ f 10 6 11
877
+ f 18 28 29
878
+ f 14 29 30
879
+ f 3 15 31
880
+ f 32 20 21
881
+ f 32 33 34
882
+ f 27 25 33
883
+ f 9 5 20
884
+ f 35 36 37
885
+ f 7 8 35
886
+ f 31 15 30
887
+ f 18 10 38
888
+ f 39 40 41
889
+ f 42 43 44
890
+ f 45 46 47
891
+ f 47 48 49
892
+ f 45 47 50
893
+ f 28 38 51
894
+ f 46 45 52
895
+ f 29 28 52
896
+ f 53 31 30
897
+ f 54 53 55
898
+ f 56 54 57
899
+ f 61 62 49
900
+ f 61 48 63
901
+ f 64 65 66
902
+ f 67 68 69
903
+ f 48 70 63
904
+ f 71 72 70
905
+ f 73 74 75
906
+ f 64 76 77
907
+ f 78 79 80
908
+ f 79 81 82
909
+ f 83 84 85
910
+ f 84 86 87
911
+ f 86 88 89
912
+ f 91 60 92
913
+ f 60 90 93
914
+ f 94 89 95
915
+ f 94 95 96
916
+ f 94 96 97
917
+ f 94 97 98
918
+ f 94 98 99
919
+ f 94 99 100
920
+ f 94 100 101
921
+ f 94 101 89
922
+ f 101 100 102
923
+ f 103 95 89
924
+ f 104 105 106
925
+ f 107 108 105
926
+ f 112 109 106
927
+ f 113 109 80
928
+ f 115 116 117
929
+ f 116 118 119
930
+ f 119 120 121
931
+ f 122 121 120
932
+ f 124 125 126
933
+ f 125 127 128
934
+ f 127 118 116
935
+ f 129 117 119
936
+ f 130 131 132
937
+ f 131 121 122
938
+ f 120 133 134
939
+ f 133 135 136
940
+ f 135 137 138
941
+ f 137 139 140
942
+ f 141 126 128
943
+ f 125 142 127
944
+ f 144 142 125
945
+ f 96 95 132
946
+ f 139 145 146
947
+ f 145 110 114
948
+ f 110 147 114
949
+ f 147 148 114
950
+ f 147 82 148
951
+ f 104 109 113
952
+ f 144 107 149
953
+ f 96 123 134
954
+ f 120 143 150
955
+ f 143 144 149
956
+ f 151 152 153
957
+ f 152 154 155
958
+ f 100 146 114
959
+ f 145 113 80
960
+ f 78 112 156
961
+ f 161 162 157
962
+ f 166 167 168
963
+ f 167 169 170
964
+ f 169 160 159
965
+ f 172 171 173
966
+ f 190 192 182
967
+ f 193 189 190
968
+ f 189 194 192
969
+ f 195 196 194
970
+ f 188 197 196
971
+ f 162 198 199
972
+ f 198 191 182
973
+ f 178 185 184
974
+ f 202 199 182
975
+ f 203 204 205
976
+ f 203 183 206
977
+ f 183 186 207
978
+ f 186 187 208
979
+ f 187 184 209
980
+ f 184 185 210
981
+ f 185 211 212
982
+ f 213 211 178
983
+ f 179 174 214
984
+ f 174 175 215
985
+ f 201 215 175
986
+ f 216 217 218
987
+ f 210 212 219
988
+ f 209 210 220
989
+ f 221 222 208
990
+ f 223 224 219
991
+ f 225 226 223
992
+ f 227 228 226
993
+ f 229 230 228
994
+ f 229 231 232
995
+ f 231 233 234
996
+ f 233 235 236
997
+ f 166 237 238
998
+ f 165 239 237
999
+ f 164 239 165
1000
+ f 240 241 239
1001
+ f 161 242 236
1002
+ f 243 157 244
1003
+ f 245 154 152
1004
+ f 246 135 133
1005
+ f 153 247 106
1006
+ f 106 247 156
1007
+ f 156 248 249
1008
+ f 248 250 251
1009
+ f 250 252 251
1010
+ f 250 44 43
1011
+ f 253 251 252
1012
+ f 82 74 65
1013
+ f 202 205 155
1014
+ f 214 215 187
1015
+ f 183 254 214
1016
+ f 182 180 179
1017
+ f 193 190 191
1018
+ f 189 193 235
1019
+ f 195 189 233
1020
+ f 188 195 231
1021
+ f 178 188 229
1022
+ f 178 225 213
1023
+ f 196 197 176
1024
+ f 194 196 173
1025
+ f 192 194 171
1026
+ f 182 192 181
1027
+ f 255 256 257
1028
+ f 258 37 36
1029
+ f 259 260 261
1030
+ f 262 259 255
1031
+ f 71 263 218
1032
+ f 264 72 71
1033
+ f 265 264 217
1034
+ f 266 265 216
1035
+ f 266 216 257
1036
+ f 150 149 267
1037
+ f 143 118 127
1038
+ f 144 125 124
1039
+ f 80 79 147
1040
+ f 109 104 106
1041
+ f 104 113 268
1042
+ f 105 104 269
1043
+ f 107 105 269
1044
+ f 106 105 108
1045
+ f 151 111 107
1046
+ f 267 149 107
1047
+ f 151 107 144
1048
+ f 268 113 145
1049
+ f 109 112 80
1050
+ f 270 246 267
1051
+ f 268 270 269
1052
+ f 270 268 139
1053
+ f 246 270 137
1054
+ f 119 118 143
1055
+ f 131 129 121
1056
+ f 136 98 97
1057
+ f 138 140 99
1058
+ f 100 99 140
1059
+ f 102 114 148
1060
+ f 101 102 77
1061
+ f 87 89 101
1062
+ f 89 88 271
1063
+ f 103 272 132
1064
+ f 129 131 130
1065
+ f 128 116 115
1066
+ f 126 141 273
1067
+ f 153 108 111
1068
+ f 211 213 223
1069
+ f 219 274 275
1070
+ f 220 219 275
1071
+ f 274 276 277
1072
+ f 275 274 278
1073
+ f 275 279 280
1074
+ f 281 282 280
1075
+ f 154 283 202
1076
+ f 155 205 204
1077
+ f 284 204 206
1078
+ f 285 206 207
1079
+ f 286 207 208
1080
+ f 221 220 287
1081
+ f 288 287 280
1082
+ f 286 222 250
1083
+ f 285 286 248
1084
+ f 284 285 156
1085
+ f 155 284 247
1086
+ f 182 203 205
1087
+ f 289 244 200
1088
+ f 244 289 290
1089
+ f 202 283 200
1090
+ f 276 274 219
1091
+ f 291 292 277
1092
+ f 293 291 276
1093
+ f 291 293 159
1094
+ f 294 291 160
1095
+ f 169 295 294
1096
+ f 158 157 243
1097
+ f 163 158 296
1098
+ f 240 163 297
1099
+ f 298 241 240
1100
+ f 241 298 299
1101
+ f 239 241 300
1102
+ f 237 239 301
1103
+ f 238 237 302
1104
+ f 295 238 303
1105
+ f 295 169 167
1106
+ f 294 295 304
1107
+ f 305 292 291
1108
+ f 305 294 306
1109
+ f 305 306 307
1110
+ f 292 305 308
1111
+ f 277 292 309
1112
+ f 278 277 310
1113
+ f 279 278 311
1114
+ f 312 281 279
1115
+ f 42 44 280
1116
+ f 313 314 315
1117
+ f 313 87 76
1118
+ f 87 313 85
1119
+ f 69 68 316
1120
+ f 66 69 317
1121
+ f 64 317 314
1122
+ f 77 148 65
1123
+ f 92 93 318
1124
+ f 319 56 57
1125
+ f 56 319 320
1126
+ f 57 321 62
1127
+ f 57 54 321
1128
+ f 54 56 322
1129
+ f 323 324 322
1130
+ f 325 323 322
1131
+ f 326 327 318
1132
+ f 253 328 318
1133
+ f 66 73 93
1134
+ f 93 73 75
1135
+ f 82 81 75
1136
+ f 82 147 79
1137
+ f 249 81 79
1138
+ f 253 249 251
1139
+ f 249 253 75
1140
+ f 85 313 329
1141
+ f 314 317 316
1142
+ f 76 87 77
1143
+ f 84 83 330
1144
+ f 86 84 331
1145
+ f 88 86 332
1146
+ f 36 261 260
1147
+ f 259 262 258
1148
+ f 259 333 256
1149
+ f 47 46 334
1150
+ f 55 335 50
1151
+ f 262 334 51
1152
+ f 334 262 218
1153
+ f 46 52 51
1154
+ f 11 37 258
1155
+ f 38 11 51
1156
+ f 335 29 45
1157
+ f 55 30 29
1158
+ f 53 54 324
1159
+ f 336 337 31
1160
+ f 91 61 60
1161
+ f 327 320 319
1162
+ f 326 325 320
1163
+ f 59 328 252
1164
+ f 325 338 323
1165
+ f 1 337 336
1166
+ f 339 336 324
1167
+ f 340 324 323
1168
+ f 338 325 58
1169
+ f 342 343 344
1170
+ f 345 346 342
1171
+ f 346 345 347
1172
+ f 348 346 349
1173
+ f 350 351 345
1174
+ f 345 351 352
1175
+ f 352 353 1
1176
+ f 347 352 339
1177
+ f 349 347 338
1178
+ f 354 349 341
1179
+ f 43 58 59
1180
+ f 355 58 43
1181
+ f 282 354 355
1182
+ f 281 348 354
1183
+ f 344 343 356
1184
+ f 343 342 346
1185
+ f 343 348 281
1186
+ f 356 343 312
1187
+ f 356 312 311
1188
+ f 357 358 356
1189
+ f 358 357 359
1190
+ f 344 358 360
1191
+ f 342 344 361
1192
+ f 362 350 342
1193
+ f 48 47 263
1194
+ f 49 62 321
1195
+ f 61 91 57
1196
+ f 61 49 48
1197
+ f 363 364 365
1198
+ f 366 364 363
1199
+ f 326 58 325
1200
+ f 326 59 58
1201
+ f 326 328 59
1202
+ f 183 182 254
1203
+ f 184 187 215
1204
+ f 303 367 368
1205
+ f 302 40 367
1206
+ f 369 370 307
1207
+ f 371 369 368
1208
+ f 372 371 367
1209
+ f 373 374 357
1210
+ f 301 41 40
1211
+ f 226 293 224
1212
+ f 228 159 293
1213
+ f 230 375 159
1214
+ f 232 376 375
1215
+ f 234 377 376
1216
+ f 234 236 377
1217
+ f 161 235 193
1218
+ f 162 200 244
1219
+ f 162 161 198
1220
+ f 242 161 158
1221
+ f 378 379 380
1222
+ f 245 289 283
1223
+ f 380 290 289
1224
+ f 378 124 273
1225
+ f 152 151 124
1226
+ f 381 382 383
1227
+ f 384 311 310
1228
+ f 381 374 373
1229
+ f 385 307 370
1230
+ f 308 307 385
1231
+ f 309 308 382
1232
+ f 373 310 309
1233
+ f 306 304 368
1234
+ f 352 351 353
1235
+ f 65 74 73
1236
+ f 82 65 148
1237
+ f 44 250 222
1238
+ f 288 222 221
1239
+ f 371 386 369
1240
+ f 387 300 299
1241
+ f 301 300 387
1242
+ f 386 370 369
1243
+ f 39 372 40
1244
+ f 388 117 129
1245
+ f 390 391 392
1246
+ f 390 393 394
1247
+ f 2 394 12
1248
+ f 391 395 389
1249
+ f 390 2 1
1250
+ f 390 353 351
1251
+ f 391 351 395
1252
+ f 395 351 350
1253
+ f 395 362 365
1254
+ f 397 175 396
1255
+ f 173 176 397
1256
+ f 397 178 177
1257
+ f 175 397 177
1258
+ f 180 398 174
1259
+ f 398 180 181
1260
+ f 178 397 176
1261
+ f 172 398 171
1262
+ f 172 173 396
1263
+ f 172 396 175
1264
+ f 399 68 67
1265
+ f 400 401 402
1266
+ f 403 404 401
1267
+ f 405 406 404
1268
+ f 407 408 406
1269
+ f 409 410 408
1270
+ f 399 410 409
1271
+ f 410 399 63
1272
+ f 413 315 316
1273
+ f 411 415 416
1274
+ f 415 417 418
1275
+ f 417 419 420
1276
+ f 419 421 422
1277
+ f 421 423 422
1278
+ f 421 424 425
1279
+ f 426 427 422
1280
+ f 426 83 414
1281
+ f 399 67 63
1282
+ f 266 428 429
1283
+ f 427 430 420
1284
+ f 70 410 63
1285
+ f 264 265 429
1286
+ f 72 264 431
1287
+ f 410 70 72
1288
+ f 406 408 432
1289
+ f 404 406 431
1290
+ f 401 404 429
1291
+ f 428 266 412
1292
+ f 402 401 428
1293
+ f 413 316 416
1294
+ f 430 413 418
1295
+ f 329 315 413
1296
+ f 414 329 430
1297
+ f 433 426 423
1298
+ f 330 83 426
1299
+ f 159 375 170
1300
+ f 375 376 168
1301
+ f 376 377 434
1302
+ f 435 434 377
1303
+ f 165 166 434
1304
+ f 164 165 435
1305
+ f 436 163 164
1306
+ f 436 435 236
1307
+ f 436 242 158
1308
+ f 1 3 337
1309
+ f 7 5 9
1310
+ f 8 9 34
1311
+ f 11 6 37
1312
+ f 3 13 15
1313
+ f 14 13 16
1314
+ f 14 17 18
1315
+ f 4 18 17
1316
+ f 19 13 22
1317
+ f 5 17 20
1318
+ f 20 19 21
1319
+ f 21 22 26
1320
+ f 23 25 27
1321
+ f 26 27 21
1322
+ f 10 11 38
1323
+ f 18 29 14
1324
+ f 14 30 15
1325
+ f 3 31 337
1326
+ f 32 21 27
1327
+ f 32 34 9
1328
+ f 27 33 32
1329
+ f 9 20 32
1330
+ f 35 37 6
1331
+ f 35 6 7
1332
+ f 18 38 28
1333
+ f 47 49 50
1334
+ f 45 50 335
1335
+ f 28 51 52
1336
+ f 29 52 45
1337
+ f 53 30 55
1338
+ f 54 55 321
1339
+ f 60 61 67
1340
+ f 61 63 67
1341
+ f 67 69 90
1342
+ f 71 70 48
1343
+ f 64 77 65
1344
+ f 78 80 112
1345
+ f 83 85 414
1346
+ f 84 87 85
1347
+ f 86 89 87
1348
+ f 67 90 60
1349
+ f 91 92 319
1350
+ f 60 93 92
1351
+ f 103 89 437
1352
+ f 115 117 388
1353
+ f 116 119 117
1354
+ f 119 121 129
1355
+ f 122 120 123
1356
+ f 123 96 122
1357
+ f 124 126 273
1358
+ f 125 128 126
1359
+ f 127 116 128
1360
+ f 130 132 272
1361
+ f 131 122 132
1362
+ f 120 134 123
1363
+ f 133 136 134
1364
+ f 135 138 136
1365
+ f 137 140 138
1366
+ f 141 128 438
1367
+ f 143 142 144
1368
+ f 96 132 122
1369
+ f 139 146 140
1370
+ f 145 114 146
1371
+ f 96 134 97
1372
+ f 120 150 133
1373
+ f 143 149 150
1374
+ f 151 153 111
1375
+ f 152 155 153
1376
+ f 108 107 111
1377
+ f 100 114 102
1378
+ f 145 80 110
1379
+ f 157 158 161
1380
+ f 164 163 240
1381
+ f 167 170 168
1382
+ f 169 159 170
1383
+ f 182 183 203
1384
+ f 188 178 197
1385
+ f 190 182 191
1386
+ f 189 192 190
1387
+ f 195 194 189
1388
+ f 188 196 195
1389
+ f 162 199 200
1390
+ f 198 182 199
1391
+ f 178 201 177
1392
+ f 178 184 201
1393
+ f 202 182 205
1394
+ f 203 206 204
1395
+ f 183 207 206
1396
+ f 186 208 207
1397
+ f 187 209 208
1398
+ f 184 210 209
1399
+ f 185 212 210
1400
+ f 179 214 254
1401
+ f 174 215 214
1402
+ f 201 175 177
1403
+ f 216 218 255
1404
+ f 210 219 220
1405
+ f 209 220 221
1406
+ f 221 208 209
1407
+ f 178 211 185
1408
+ f 223 219 212
1409
+ f 225 223 213
1410
+ f 227 226 225
1411
+ f 229 228 227
1412
+ f 229 232 230
1413
+ f 231 234 232
1414
+ f 233 236 234
1415
+ f 166 238 167
1416
+ f 165 237 166
1417
+ f 240 239 164
1418
+ f 161 236 235
1419
+ f 243 244 439
1420
+ f 245 152 378
1421
+ f 246 133 150
1422
+ f 153 106 108
1423
+ f 106 156 112
1424
+ f 156 249 78
1425
+ f 248 251 249
1426
+ f 250 43 252
1427
+ f 253 252 328
1428
+ f 214 187 186
1429
+ f 183 214 186
1430
+ f 182 179 254
1431
+ f 193 191 198
1432
+ f 189 235 233
1433
+ f 195 233 231
1434
+ f 188 231 229
1435
+ f 178 229 227
1436
+ f 178 227 225
1437
+ f 197 178 176
1438
+ f 196 176 173
1439
+ f 194 173 171
1440
+ f 192 171 181
1441
+ f 182 181 180
1442
+ f 255 257 216
1443
+ f 258 36 260
1444
+ f 259 261 333
1445
+ f 262 255 218
1446
+ f 71 218 217
1447
+ f 264 71 217
1448
+ f 265 217 216
1449
+ f 266 257 412
1450
+ f 150 267 246
1451
+ f 143 127 142
1452
+ f 144 124 151
1453
+ f 80 147 110
1454
+ f 107 269 267
1455
+ f 268 145 139
1456
+ f 270 267 269
1457
+ f 268 269 104
1458
+ f 270 139 137
1459
+ f 246 137 135
1460
+ f 119 143 120
1461
+ f 136 97 134
1462
+ f 98 136 138
1463
+ f 138 99 98
1464
+ f 100 140 146
1465
+ f 102 148 77
1466
+ f 101 77 87
1467
+ f 89 271 437
1468
+ f 103 132 95
1469
+ f 129 130 440
1470
+ f 128 115 438
1471
+ f 211 223 212
1472
+ f 220 275 287
1473
+ f 274 277 278
1474
+ f 275 278 279
1475
+ f 275 280 287
1476
+ f 281 280 279
1477
+ f 154 202 155
1478
+ f 155 204 284
1479
+ f 284 206 285
1480
+ f 285 207 286
1481
+ f 286 208 222
1482
+ f 221 287 288
1483
+ f 288 280 44
1484
+ f 286 250 248
1485
+ f 285 248 156
1486
+ f 284 156 247
1487
+ f 155 247 153
1488
+ f 289 200 283
1489
+ f 244 290 439
1490
+ f 202 200 199
1491
+ f 276 219 224
1492
+ f 291 277 276
1493
+ f 293 276 224
1494
+ f 291 159 160
1495
+ f 169 294 160
1496
+ f 158 243 296
1497
+ f 163 296 297
1498
+ f 240 297 441
1499
+ f 298 240 441
1500
+ f 241 299 300
1501
+ f 239 300 301
1502
+ f 237 301 302
1503
+ f 238 302 303
1504
+ f 295 303 304
1505
+ f 295 167 238
1506
+ f 294 304 306
1507
+ f 305 291 294
1508
+ f 305 307 308
1509
+ f 292 308 309
1510
+ f 277 309 310
1511
+ f 278 310 311
1512
+ f 279 311 312
1513
+ f 42 280 282
1514
+ f 313 315 329
1515
+ f 313 76 314
1516
+ f 69 316 317
1517
+ f 66 317 64
1518
+ f 64 314 76
1519
+ f 92 318 327
1520
+ f 319 57 91
1521
+ f 56 320 322
1522
+ f 54 322 324
1523
+ f 325 322 320
1524
+ f 326 318 328
1525
+ f 253 318 75
1526
+ f 90 69 66
1527
+ f 66 93 90
1528
+ f 93 75 318
1529
+ f 82 75 74
1530
+ f 249 79 78
1531
+ f 249 75 81
1532
+ f 85 329 414
1533
+ f 314 316 315
1534
+ f 84 330 331
1535
+ f 86 331 332
1536
+ f 88 332 271
1537
+ f 259 258 260
1538
+ f 259 256 255
1539
+ f 47 334 263
1540
+ f 55 50 321
1541
+ f 262 51 258
1542
+ f 334 218 263
1543
+ f 46 51 334
1544
+ f 11 258 51
1545
+ f 55 29 335
1546
+ f 53 324 336
1547
+ f 336 31 53
1548
+ f 327 319 92
1549
+ f 326 320 327
1550
+ f 1 336 339
1551
+ f 339 324 340
1552
+ f 340 323 338
1553
+ f 338 58 341
1554
+ f 341 58 355
1555
+ f 345 342 350
1556
+ f 346 347 349
1557
+ f 348 349 354
1558
+ f 345 352 347
1559
+ f 352 1 339
1560
+ f 347 339 340
1561
+ f 347 340 338
1562
+ f 349 338 341
1563
+ f 354 341 355
1564
+ f 43 59 252
1565
+ f 355 43 42
1566
+ f 282 355 42
1567
+ f 281 354 282
1568
+ f 344 356 358
1569
+ f 343 346 348
1570
+ f 343 281 312
1571
+ f 356 311 384
1572
+ f 357 356 384
1573
+ f 358 359 360
1574
+ f 344 360 361
1575
+ f 342 361 363
1576
+ f 362 342 363
1577
+ f 48 263 71
1578
+ f 49 321 50
1579
+ f 61 57 62
1580
+ f 363 365 362
1581
+ f 184 215 201
1582
+ f 303 368 304
1583
+ f 302 367 303
1584
+ f 369 307 368
1585
+ f 371 368 367
1586
+ f 372 367 40
1587
+ f 373 357 384
1588
+ f 301 40 302
1589
+ f 226 224 223
1590
+ f 228 293 226
1591
+ f 230 159 228
1592
+ f 232 375 230
1593
+ f 234 376 232
1594
+ f 161 193 198
1595
+ f 162 244 157
1596
+ f 378 380 245
1597
+ f 245 283 154
1598
+ f 380 289 245
1599
+ f 378 273 379
1600
+ f 152 124 378
1601
+ f 384 310 373
1602
+ f 308 385 382
1603
+ f 309 382 381
1604
+ f 373 309 381
1605
+ f 306 368 307
1606
+ f 65 73 66
1607
+ f 44 222 288
1608
+ f 387 299 442
1609
+ f 301 387 41
1610
+ f 388 129 440
1611
+ f 390 392 393
1612
+ f 390 394 2
1613
+ f 2 12 3
1614
+ f 391 389 392
1615
+ f 390 1 353
1616
+ f 390 351 391
1617
+ f 395 350 362
1618
+ f 395 365 389
1619
+ f 173 397 396
1620
+ f 180 174 179
1621
+ f 398 181 171
1622
+ f 172 175 174
1623
+ f 172 174 398
1624
+ f 400 402 443
1625
+ f 403 401 400
1626
+ f 405 404 403
1627
+ f 407 406 405
1628
+ f 409 408 407
1629
+ f 411 68 399
1630
+ f 411 416 68
1631
+ f 415 418 416
1632
+ f 417 420 418
1633
+ f 419 422 420
1634
+ f 421 425 423
1635
+ f 426 422 423
1636
+ f 426 414 427
1637
+ f 266 429 265
1638
+ f 427 420 422
1639
+ f 264 429 431
1640
+ f 72 431 432
1641
+ f 410 72 432
1642
+ f 408 410 432
1643
+ f 406 432 431
1644
+ f 404 431 429
1645
+ f 401 429 428
1646
+ f 428 412 444
1647
+ f 402 428 444
1648
+ f 413 416 418
1649
+ f 430 418 420
1650
+ f 316 68 416
1651
+ f 329 413 430
1652
+ f 414 430 427
1653
+ f 433 423 425
1654
+ f 330 426 433
1655
+ f 375 168 170
1656
+ f 376 434 168
1657
+ f 435 377 236
1658
+ f 166 168 434
1659
+ f 165 434 435
1660
+ f 164 435 436
1661
+ f 436 236 242
1662
+ f 436 158 163
1663
+ f 363 361 366
1664
+ f 445 447 446
1665
+ f 448 450 449
1666
+ f 451 449 450
1667
+ f 8 452 451
1668
+ f 453 450 448
1669
+ f 447 456 455
1670
+ f 457 456 458
1671
+ f 457 460 459
1672
+ f 448 461 453
1673
+ f 460 462 459
1674
+ f 462 456 459
1675
+ f 449 460 448
1676
+ f 463 462 460
1677
+ f 464 465 462
1678
+ f 465 455 456
1679
+ f 466 25 24
1680
+ f 467 468 466
1681
+ f 453 454 450
1682
+ f 461 470 469
1683
+ f 457 471 470
1684
+ f 447 472 458
1685
+ f 473 464 463
1686
+ f 473 34 33
1687
+ f 468 33 25
1688
+ f 452 463 449
1689
+ f 35 474 36
1690
+ f 451 35 8
1691
+ f 472 471 458
1692
+ f 461 475 453
1693
+ f 476 478 477
1694
+ f 479 481 480
1695
+ f 482 484 483
1696
+ f 484 486 485
1697
+ f 482 487 484
1698
+ f 469 488 475
1699
+ f 483 489 482
1700
+ f 470 489 469
1701
+ f 490 471 472
1702
+ f 491 492 490
1703
+ f 493 494 491
1704
+ f 498 486 499
1705
+ f 498 500 485
1706
+ f 501 503 502
1707
+ f 504 506 505
1708
+ f 485 500 507
1709
+ f 508 507 509
1710
+ f 510 512 511
1711
+ f 501 514 513
1712
+ f 515 517 516
1713
+ f 516 519 518
1714
+ f 520 522 521
1715
+ f 521 524 523
1716
+ f 523 526 525
1717
+ f 528 529 497
1718
+ f 497 530 527
1719
+ f 531 532 526
1720
+ f 531 533 532
1721
+ f 531 534 533
1722
+ f 531 535 534
1723
+ f 531 536 535
1724
+ f 531 537 536
1725
+ f 531 538 537
1726
+ f 531 526 538
1727
+ f 538 539 537
1728
+ f 103 526 532
1729
+ f 540 542 541
1730
+ f 543 541 544
1731
+ f 548 542 545
1732
+ f 549 517 545
1733
+ f 115 552 551
1734
+ f 551 554 553
1735
+ f 554 556 555
1736
+ f 557 555 556
1737
+ f 559 561 560
1738
+ f 560 563 562
1739
+ f 562 551 553
1740
+ f 564 554 552
1741
+ f 130 566 565
1742
+ f 565 557 556
1743
+ f 555 568 567
1744
+ f 567 570 569
1745
+ f 569 572 571
1746
+ f 571 574 573
1747
+ f 141 563 561
1748
+ f 560 562 575
1749
+ f 577 560 575
1750
+ f 533 566 532
1751
+ f 573 579 578
1752
+ f 578 550 546
1753
+ f 546 550 580
1754
+ f 580 550 581
1755
+ f 580 581 519
1756
+ f 540 549 545
1757
+ f 577 582 543
1758
+ f 533 568 558
1759
+ f 555 583 576
1760
+ f 576 582 577
1761
+ f 584 586 585
1762
+ f 585 588 587
1763
+ f 537 550 579
1764
+ f 578 517 549
1765
+ f 515 589 548
1766
+ f 594 590 595
1767
+ f 599 601 600
1768
+ f 600 603 602
1769
+ f 602 592 593
1770
+ f 605 606 604
1771
+ f 623 615 625
1772
+ f 626 623 622
1773
+ f 622 625 627
1774
+ f 628 627 629
1775
+ f 621 629 630
1776
+ f 595 632 631
1777
+ f 631 615 624
1778
+ f 611 617 618
1779
+ f 635 615 632
1780
+ f 636 638 637
1781
+ f 636 639 616
1782
+ f 616 640 619
1783
+ f 619 641 620
1784
+ f 620 642 617
1785
+ f 617 643 618
1786
+ f 618 645 644
1787
+ f 646 611 644
1788
+ f 612 647 607
1789
+ f 607 648 608
1790
+ f 634 608 648
1791
+ f 649 651 650
1792
+ f 643 652 645
1793
+ f 642 653 643
1794
+ f 654 641 655
1795
+ f 656 652 657
1796
+ f 658 656 659
1797
+ f 660 659 661
1798
+ f 662 661 663
1799
+ f 662 665 664
1800
+ f 664 667 666
1801
+ f 666 669 668
1802
+ f 599 671 670
1803
+ f 598 670 672
1804
+ f 597 598 672
1805
+ f 673 672 674
1806
+ f 594 669 675
1807
+ f 243 676 590
1808
+ f 677 585 587
1809
+ f 678 567 569
1810
+ f 586 542 679
1811
+ f 542 589 679
1812
+ f 589 681 680
1813
+ f 680 683 682
1814
+ f 682 683 684
1815
+ f 682 480 481
1816
+ f 685 684 683
1817
+ f 519 502 511
1818
+ f 635 588 638
1819
+ f 647 620 648
1820
+ f 616 647 686
1821
+ f 615 612 613
1822
+ f 626 624 623
1823
+ f 622 668 626
1824
+ f 628 666 622
1825
+ f 621 664 628
1826
+ f 611 662 621
1827
+ f 611 646 658
1828
+ f 629 609 630
1829
+ f 627 606 629
1830
+ f 625 604 627
1831
+ f 615 614 625
1832
+ f 687 257 256
1833
+ f 688 36 474
1834
+ f 689 261 690
1835
+ f 691 687 689
1836
+ f 508 651 692
1837
+ f 693 508 509
1838
+ f 694 650 693
1839
+ f 695 649 694
1840
+ f 695 257 649
1841
+ f 583 696 582
1842
+ f 576 562 553
1843
+ f 577 559 560
1844
+ f 517 580 516
1845
+ f 545 542 540
1846
+ f 540 697 549
1847
+ f 541 698 540
1848
+ f 543 698 541
1849
+ f 542 544 541
1850
+ f 584 543 547
1851
+ f 696 543 582
1852
+ f 584 577 543
1853
+ f 697 578 549
1854
+ f 545 517 548
1855
+ f 699 696 678
1856
+ f 697 698 699
1857
+ f 699 573 697
1858
+ f 678 571 699
1859
+ f 554 576 553
1860
+ f 565 556 564
1861
+ f 570 534 535
1862
+ f 572 536 574
1863
+ f 537 574 536
1864
+ f 539 581 550
1865
+ f 538 514 539
1866
+ f 524 538 526
1867
+ f 526 271 525
1868
+ f 103 566 272
1869
+ f 564 130 565
1870
+ f 563 115 551
1871
+ f 561 273 141
1872
+ f 586 547 544
1873
+ f 644 656 646
1874
+ f 652 701 700
1875
+ f 653 701 652
1876
+ f 700 703 702
1877
+ f 701 704 700
1878
+ f 701 706 705
1879
+ f 707 706 708
1880
+ f 587 635 709
1881
+ f 588 637 638
1882
+ f 710 639 637
1883
+ f 711 640 639
1884
+ f 712 641 640
1885
+ f 654 713 653
1886
+ f 714 706 713
1887
+ f 712 682 655
1888
+ f 711 680 712
1889
+ f 710 589 711
1890
+ f 588 679 710
1891
+ f 615 638 636
1892
+ f 715 633 676
1893
+ f 676 290 715
1894
+ f 635 633 709
1895
+ f 702 652 700
1896
+ f 716 703 717
1897
+ f 718 702 716
1898
+ f 716 592 718
1899
+ f 719 593 716
1900
+ f 602 719 720
1901
+ f 591 243 590
1902
+ f 596 296 591
1903
+ f 673 297 596
1904
+ f 298 673 674
1905
+ f 674 299 298
1906
+ f 672 721 674
1907
+ f 670 722 672
1908
+ f 671 723 670
1909
+ f 720 724 671
1910
+ f 720 600 602
1911
+ f 719 725 720
1912
+ f 726 716 717
1913
+ f 726 727 719
1914
+ f 726 728 727
1915
+ f 717 729 726
1916
+ f 703 730 717
1917
+ f 704 731 703
1918
+ f 705 732 704
1919
+ f 733 705 707
1920
+ f 479 706 481
1921
+ f 734 736 735
1922
+ f 734 513 524
1923
+ f 524 522 734
1924
+ f 506 737 505
1925
+ f 503 738 506
1926
+ f 501 735 738
1927
+ f 514 502 581
1928
+ f 529 739 530
1929
+ f 740 494 493
1930
+ f 493 741 740
1931
+ f 494 499 742
1932
+ f 494 742 491
1933
+ f 491 743 493
1934
+ f 744 743 745
1935
+ f 746 743 744
1936
+ f 747 739 748
1937
+ f 685 739 749
1938
+ f 503 530 510
1939
+ f 530 512 510
1940
+ f 519 512 518
1941
+ f 519 516 580
1942
+ f 681 516 518
1943
+ f 685 683 681
1944
+ f 681 512 685
1945
+ f 522 750 734
1946
+ f 735 737 738
1947
+ f 513 514 524
1948
+ f 521 330 520
1949
+ f 523 331 521
1950
+ f 525 332 523
1951
+ f 36 690 261
1952
+ f 689 688 691
1953
+ f 689 256 333
1954
+ f 484 751 483
1955
+ f 492 487 752
1956
+ f 691 488 751
1957
+ f 751 651 691
1958
+ f 483 488 489
1959
+ f 454 688 474
1960
+ f 475 488 454
1961
+ f 752 482 470
1962
+ f 492 470 471
1963
+ f 490 745 491
1964
+ f 753 472 754
1965
+ f 528 497 498
1966
+ f 748 740 741
1967
+ f 747 741 746
1968
+ f 496 684 749
1969
+ f 746 744 755
1970
+ f 445 753 754
1971
+ f 756 745 753
1972
+ f 757 744 745
1973
+ f 755 495 746
1974
+ f 759 761 760
1975
+ f 762 759 763
1976
+ f 763 764 762
1977
+ f 765 766 763
1978
+ f 767 762 768
1979
+ f 762 769 768
1980
+ f 769 445 770
1981
+ f 764 756 769
1982
+ f 766 755 764
1983
+ f 771 758 766
1984
+ f 480 496 495
1985
+ f 772 480 495
1986
+ f 708 772 771
1987
+ f 707 771 765
1988
+ f 761 773 760
1989
+ f 760 763 759
1990
+ f 760 707 765
1991
+ f 773 733 760
1992
+ f 773 732 733
1993
+ f 774 773 775
1994
+ f 775 776 774
1995
+ f 761 777 775
1996
+ f 759 778 761
1997
+ f 779 759 767
1998
+ f 485 692 484
1999
+ f 486 742 499
2000
+ f 498 494 528
2001
+ f 498 485 486
2002
+ f 780 782 781
2003
+ f 783 780 781
2004
+ f 747 746 495
2005
+ f 747 495 496
2006
+ f 747 496 749
2007
+ f 616 686 615
2008
+ f 617 648 620
2009
+ f 724 785 784
2010
+ f 723 784 477
2011
+ f 786 728 787
2012
+ f 788 785 786
2013
+ f 789 784 788
2014
+ f 790 774 791
2015
+ f 722 477 478
2016
+ f 659 657 718
2017
+ f 661 718 592
2018
+ f 663 592 792
2019
+ f 665 792 793
2020
+ f 667 793 794
2021
+ f 667 794 669
2022
+ f 594 626 668
2023
+ f 595 676 633
2024
+ f 595 631 594
2025
+ f 675 591 594
2026
+ f 795 380 379
2027
+ f 677 709 715
2028
+ f 380 715 290
2029
+ f 795 273 559
2030
+ f 585 559 584
2031
+ f 796 798 797
2032
+ f 799 731 732
2033
+ f 796 790 791
2034
+ f 800 787 728
2035
+ f 729 800 728
2036
+ f 730 797 729
2037
+ f 790 730 731
2038
+ f 727 785 725
2039
+ f 769 770 768
2040
+ f 502 510 511
2041
+ f 519 581 502
2042
+ f 481 655 682
2043
+ f 714 654 655
2044
+ f 788 786 801
2045
+ f 802 299 721
2046
+ f 722 802 721
2047
+ f 801 786 787
2048
+ f 476 477 789
2049
+ f 388 564 552
2050
+ f 804 806 805
2051
+ f 804 808 807
2052
+ f 446 455 808
2053
+ f 805 803 809
2054
+ f 804 445 446
2055
+ f 804 768 770
2056
+ f 805 809 768
2057
+ f 809 767 768
2058
+ f 809 782 779
2059
+ f 811 810 608
2060
+ f 606 811 609
2061
+ f 811 610 611
2062
+ f 608 610 811
2063
+ f 613 607 812
2064
+ f 812 614 613
2065
+ f 611 609 811
2066
+ f 605 604 812
2067
+ f 605 810 606
2068
+ f 605 608 810
2069
+ f 813 504 505
2070
+ f 814 402 815
2071
+ f 816 815 817
2072
+ f 818 817 819
2073
+ f 820 819 821
2074
+ f 822 821 823
2075
+ f 813 822 823
2076
+ f 823 500 813
2077
+ f 825 737 736
2078
+ f 824 828 827
2079
+ f 827 830 829
2080
+ f 829 832 831
2081
+ f 831 834 833
2082
+ f 833 834 835
2083
+ f 833 425 424
2084
+ f 836 834 837
2085
+ f 836 826 520
2086
+ f 813 500 504
2087
+ f 695 839 838
2088
+ f 837 832 840
2089
+ f 507 500 823
2090
+ f 693 839 694
2091
+ f 509 841 693
2092
+ f 823 509 507
2093
+ f 819 842 821
2094
+ f 817 841 819
2095
+ f 815 839 817
2096
+ f 838 412 695
2097
+ f 402 838 815
2098
+ f 825 828 737
2099
+ f 840 830 825
2100
+ f 750 825 736
2101
+ f 826 840 750
2102
+ f 433 835 836
2103
+ f 330 836 520
2104
+ f 592 603 792
2105
+ f 792 601 793
2106
+ f 793 843 794
2107
+ f 844 794 843
2108
+ f 598 843 599
2109
+ f 597 844 598
2110
+ f 845 597 596
2111
+ f 845 669 844
2112
+ f 845 591 675
2113
+ f 445 754 447
2114
+ f 451 452 449
2115
+ f 8 34 452
2116
+ f 454 474 450
2117
+ f 447 458 456
2118
+ f 457 459 456
2119
+ f 457 461 460
2120
+ f 448 460 461
2121
+ f 462 465 456
2122
+ f 449 463 460
2123
+ f 463 464 462
2124
+ f 464 467 465
2125
+ f 466 468 25
2126
+ f 467 464 468
2127
+ f 453 475 454
2128
+ f 461 457 470
2129
+ f 457 458 471
2130
+ f 447 754 472
2131
+ f 473 468 464
2132
+ f 473 452 34
2133
+ f 468 473 33
2134
+ f 452 473 463
2135
+ f 35 450 474
2136
+ f 35 451 450
2137
+ f 461 469 475
2138
+ f 484 487 486
2139
+ f 482 752 487
2140
+ f 469 489 488
2141
+ f 470 482 489
2142
+ f 490 492 471
2143
+ f 491 742 492
2144
+ f 497 504 498
2145
+ f 498 504 500
2146
+ f 504 527 506
2147
+ f 508 485 507
2148
+ f 501 502 514
2149
+ f 515 548 517
2150
+ f 520 826 522
2151
+ f 521 522 524
2152
+ f 523 524 526
2153
+ f 504 497 527
2154
+ f 528 740 529
2155
+ f 497 529 530
2156
+ f 103 437 526
2157
+ f 115 388 552
2158
+ f 551 552 554
2159
+ f 554 564 556
2160
+ f 557 558 555
2161
+ f 558 557 533
2162
+ f 559 273 561
2163
+ f 560 561 563
2164
+ f 562 563 551
2165
+ f 130 272 566
2166
+ f 565 566 557
2167
+ f 555 558 568
2168
+ f 567 568 570
2169
+ f 569 570 572
2170
+ f 571 572 574
2171
+ f 141 438 563
2172
+ f 576 577 575
2173
+ f 533 557 566
2174
+ f 573 574 579
2175
+ f 578 579 550
2176
+ f 533 534 568
2177
+ f 555 567 583
2178
+ f 576 583 582
2179
+ f 584 547 586
2180
+ f 585 586 588
2181
+ f 544 547 543
2182
+ f 537 539 550
2183
+ f 578 546 517
2184
+ f 590 594 591
2185
+ f 597 673 596
2186
+ f 600 601 603
2187
+ f 602 603 592
2188
+ f 615 636 616
2189
+ f 621 630 611
2190
+ f 623 624 615
2191
+ f 622 623 625
2192
+ f 628 622 627
2193
+ f 621 628 629
2194
+ f 595 633 632
2195
+ f 631 632 615
2196
+ f 611 610 634
2197
+ f 611 634 617
2198
+ f 635 638 615
2199
+ f 636 637 639
2200
+ f 616 639 640
2201
+ f 619 640 641
2202
+ f 620 641 642
2203
+ f 617 642 643
2204
+ f 618 643 645
2205
+ f 612 686 647
2206
+ f 607 647 648
2207
+ f 634 610 608
2208
+ f 649 687 651
2209
+ f 643 653 652
2210
+ f 642 654 653
2211
+ f 654 642 641
2212
+ f 611 618 644
2213
+ f 656 645 652
2214
+ f 658 646 656
2215
+ f 660 658 659
2216
+ f 662 660 661
2217
+ f 662 663 665
2218
+ f 664 665 667
2219
+ f 666 667 669
2220
+ f 599 600 671
2221
+ f 598 599 670
2222
+ f 673 597 672
2223
+ f 594 668 669
2224
+ f 243 439 676
2225
+ f 677 795 585
2226
+ f 678 583 567
2227
+ f 586 544 542
2228
+ f 542 548 589
2229
+ f 589 515 681
2230
+ f 680 681 683
2231
+ f 682 684 480
2232
+ f 685 749 684
2233
+ f 647 619 620
2234
+ f 616 619 647
2235
+ f 615 686 612
2236
+ f 626 631 624
2237
+ f 622 666 668
2238
+ f 628 664 666
2239
+ f 621 662 664
2240
+ f 611 660 662
2241
+ f 611 658 660
2242
+ f 630 609 611
2243
+ f 629 606 609
2244
+ f 627 604 606
2245
+ f 625 614 604
2246
+ f 615 613 614
2247
+ f 687 649 257
2248
+ f 688 690 36
2249
+ f 689 333 261
2250
+ f 691 651 687
2251
+ f 508 650 651
2252
+ f 693 650 508
2253
+ f 694 649 650
2254
+ f 695 412 257
2255
+ f 583 678 696
2256
+ f 576 575 562
2257
+ f 577 584 559
2258
+ f 517 546 580
2259
+ f 543 696 698
2260
+ f 697 573 578
2261
+ f 699 698 696
2262
+ f 697 540 698
2263
+ f 699 571 573
2264
+ f 678 569 571
2265
+ f 554 555 576
2266
+ f 570 568 534
2267
+ f 535 572 570
2268
+ f 572 535 536
2269
+ f 537 579 574
2270
+ f 539 514 581
2271
+ f 538 524 514
2272
+ f 526 437 271
2273
+ f 103 532 566
2274
+ f 564 440 130
2275
+ f 563 438 115
2276
+ f 644 645 656
2277
+ f 653 713 701
2278
+ f 700 704 703
2279
+ f 701 705 704
2280
+ f 701 713 706
2281
+ f 707 705 706
2282
+ f 587 588 635
2283
+ f 588 710 637
2284
+ f 710 711 639
2285
+ f 711 712 640
2286
+ f 712 655 641
2287
+ f 654 714 713
2288
+ f 714 481 706
2289
+ f 712 680 682
2290
+ f 711 589 680
2291
+ f 710 679 589
2292
+ f 588 586 679
2293
+ f 715 709 633
2294
+ f 676 439 290
2295
+ f 635 632 633
2296
+ f 702 657 652
2297
+ f 716 702 703
2298
+ f 718 657 702
2299
+ f 716 593 592
2300
+ f 602 593 719
2301
+ f 591 296 243
2302
+ f 596 297 296
2303
+ f 673 441 297
2304
+ f 298 441 673
2305
+ f 674 721 299
2306
+ f 672 722 721
2307
+ f 670 723 722
2308
+ f 671 724 723
2309
+ f 720 725 724
2310
+ f 720 671 600
2311
+ f 719 727 725
2312
+ f 726 719 716
2313
+ f 726 729 728
2314
+ f 717 730 729
2315
+ f 703 731 730
2316
+ f 704 732 731
2317
+ f 705 733 732
2318
+ f 479 708 706
2319
+ f 734 750 736
2320
+ f 734 735 513
2321
+ f 506 738 737
2322
+ f 503 501 738
2323
+ f 501 513 735
2324
+ f 529 748 739
2325
+ f 740 528 494
2326
+ f 493 743 741
2327
+ f 491 745 743
2328
+ f 746 741 743
2329
+ f 747 749 739
2330
+ f 685 512 739
2331
+ f 527 503 506
2332
+ f 503 527 530
2333
+ f 530 739 512
2334
+ f 519 511 512
2335
+ f 681 515 516
2336
+ f 681 518 512
2337
+ f 522 826 750
2338
+ f 735 736 737
2339
+ f 521 331 330
2340
+ f 523 332 331
2341
+ f 525 271 332
2342
+ f 689 690 688
2343
+ f 689 687 256
2344
+ f 484 692 751
2345
+ f 492 742 487
2346
+ f 691 688 488
2347
+ f 751 692 651
2348
+ f 483 751 488
2349
+ f 454 488 688
2350
+ f 492 752 470
2351
+ f 490 753 745
2352
+ f 753 490 472
2353
+ f 748 529 740
2354
+ f 747 748 741
2355
+ f 445 756 753
2356
+ f 756 757 745
2357
+ f 757 755 744
2358
+ f 755 758 495
2359
+ f 758 772 495
2360
+ f 762 767 759
2361
+ f 763 766 764
2362
+ f 765 771 766
2363
+ f 762 764 769
2364
+ f 769 756 445
2365
+ f 764 757 756
2366
+ f 764 755 757
2367
+ f 766 758 755
2368
+ f 771 772 758
2369
+ f 480 684 496
2370
+ f 772 479 480
2371
+ f 708 479 772
2372
+ f 707 708 771
2373
+ f 761 775 773
2374
+ f 760 765 763
2375
+ f 760 733 707
2376
+ f 773 799 732
2377
+ f 774 799 773
2378
+ f 775 777 776
2379
+ f 761 778 777
2380
+ f 759 780 778
2381
+ f 779 780 759
2382
+ f 485 508 692
2383
+ f 486 487 742
2384
+ f 498 499 494
2385
+ f 780 779 782
2386
+ f 617 634 648
2387
+ f 724 725 785
2388
+ f 723 724 784
2389
+ f 786 785 728
2390
+ f 788 784 785
2391
+ f 789 477 784
2392
+ f 790 799 774
2393
+ f 722 723 477
2394
+ f 659 656 657
2395
+ f 661 659 718
2396
+ f 663 661 592
2397
+ f 665 663 792
2398
+ f 667 665 793
2399
+ f 594 631 626
2400
+ f 595 590 676
2401
+ f 795 677 380
2402
+ f 677 587 709
2403
+ f 380 677 715
2404
+ f 795 379 273
2405
+ f 585 795 559
2406
+ f 799 790 731
2407
+ f 729 797 800
2408
+ f 730 796 797
2409
+ f 790 796 730
2410
+ f 727 728 785
2411
+ f 502 503 510
2412
+ f 481 714 655
2413
+ f 802 442 299
2414
+ f 722 478 802
2415
+ f 388 440 564
2416
+ f 804 807 806
2417
+ f 804 446 808
2418
+ f 446 447 455
2419
+ f 805 806 803
2420
+ f 804 770 445
2421
+ f 804 805 768
2422
+ f 809 779 767
2423
+ f 809 803 782
2424
+ f 606 810 811
2425
+ f 613 612 607
2426
+ f 812 604 614
2427
+ f 605 607 608
2428
+ f 605 812 607
2429
+ f 814 443 402
2430
+ f 816 814 815
2431
+ f 818 816 817
2432
+ f 820 818 819
2433
+ f 822 820 821
2434
+ f 824 813 505
2435
+ f 824 505 828
2436
+ f 827 828 830
2437
+ f 829 830 832
2438
+ f 831 832 834
2439
+ f 833 835 425
2440
+ f 836 835 834
2441
+ f 836 837 826
2442
+ f 695 694 839
2443
+ f 837 834 832
2444
+ f 693 841 839
2445
+ f 509 842 841
2446
+ f 823 842 509
2447
+ f 821 842 823
2448
+ f 819 841 842
2449
+ f 817 839 841
2450
+ f 815 838 839
2451
+ f 838 444 412
2452
+ f 402 444 838
2453
+ f 825 830 828
2454
+ f 840 832 830
2455
+ f 737 828 505
2456
+ f 750 840 825
2457
+ f 826 837 840
2458
+ f 433 425 835
2459
+ f 330 433 836
2460
+ f 792 603 601
2461
+ f 793 601 843
2462
+ f 844 669 794
2463
+ f 599 843 601
2464
+ f 598 844 843
2465
+ f 597 845 844
2466
+ f 845 675 669
2467
+ f 845 596 591
2468
+ f 780 783 778
2469
+ # 1610 faces, 0 coords texture
2470
+
2471
+ # End of File
demos/model3D/files/sofia.stl ADDED
Binary file (675 kB). View file
 
demos/model3D/files/source.txt ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Stanford Bunny:
2
+ https://graphics.stanford.edu/data/3Dscanrep/
3
+ https://graphics.stanford.edu/~mdfisher/Data/Meshes/bunny.obj
4
+
5
+ Duck & Fox:
6
+ https://github.com/KhronosGroup/glTF-Sample-Models
7
+
8
+ Face:
9
+ https://github.com/mikedh/trimesh/tree/main/models
10
+
11
+ NASA SOFIA:
12
+ https://nasa3d.arc.nasa.gov/detail/sofia
13
+ https://github.com/nasa/NASA-3D-Resources/blob/master/3D%20Models/SOFIA/Fuselage_top.stl