├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── .vscode ├── launch.json └── settings.json ├── README.md ├── README_cloud-reader.md ├── Tiny-3-GLCover.epub ├── dev ├── RequireJS_config.js ├── index_RequireJS_multiple-bundles.html ├── index_RequireJS_multiple-bundles_LITE.html ├── index_RequireJS_no-optimize.html ├── index_RequireJS_no-optimize_LITE.html ├── index_RequireJS_single-bundle.html ├── index_RequireJS_single-bundle_LITE.html └── version.json ├── epub_content ├── EPUB-Spec-Unzipped.png ├── EPUB-Spec-Zipped.png ├── Hales-Motivic-Measure │ ├── EPUB │ │ ├── css │ │ │ ├── commonltr.css │ │ │ ├── epub.css │ │ │ └── mot_int.css │ │ ├── img │ │ │ ├── cover.png │ │ │ ├── mot_int0x.png │ │ │ └── mot_int1x.png │ │ ├── package.opf │ │ └── xhtml │ │ │ ├── ch1.html │ │ │ ├── copyright.html │ │ │ ├── nav.html │ │ │ └── titlepage.html │ ├── META-INF │ │ └── container.xml │ └── mimetype ├── NeHe-EPUB-1-16 │ ├── EPUB │ │ ├── css │ │ │ ├── NeHe-EPUB.css │ │ │ ├── NeHe.css │ │ │ └── prism.css │ │ ├── fonts │ │ │ ├── LICENSE │ │ │ ├── gentilis_bold.typeface.json │ │ │ ├── gentilis_regular.typeface.json │ │ │ ├── helvetiker_bold.typeface.json │ │ │ └── helvetiker_regular.typeface.json │ │ ├── frontmatter │ │ │ ├── colophon.xhtml │ │ │ ├── cover.xhtml │ │ │ ├── intro.xhtml │ │ │ ├── preface.xhtml │ │ │ └── toc.xhtml │ │ ├── gfx │ │ │ ├── OrbitControls-Touch-Ortho.js │ │ │ └── gfx-scene.js │ │ ├── images │ │ │ ├── NeHe-1-16.png │ │ │ ├── checkerboard.jpg │ │ │ └── webgl.jpg │ │ ├── lesson01 │ │ │ └── lesson01.xhtml │ │ ├── lesson02 │ │ │ ├── lesson02.xhtml │ │ │ └── lesson02webgl.xhtml │ │ ├── lesson03 │ │ │ ├── lesson03.xhtml │ │ │ └── lesson03webgl.xhtml │ │ ├── lesson04 │ │ │ ├── lesson04.xhtml │ │ │ └── lesson04webgl.xhtml │ │ ├── lesson05 │ │ │ ├── lesson05.xhtml │ │ │ └── lesson05webgl.xhtml │ │ ├── lesson06 │ │ │ ├── images │ │ │ │ └── NeHe.jpg │ │ │ ├── lesson06.xhtml │ │ │ └── lesson06webgl.xhtml │ │ ├── lesson07 │ │ │ ├── images │ │ │ │ ├── StoneWall-1024.png │ │ │ │ ├── StoneWall-256.png │ │ │ │ └── StoneWall-64.png │ │ │ ├── lesson07.xhtml │ │ │ └── lesson07webgl.xhtml │ │ ├── lesson08 │ │ │ ├── images │ │ │ │ └── Glass.jpg │ │ │ ├── lesson08.xhtml │ │ │ └── lesson08webgl.xhtml │ │ ├── lesson09 │ │ │ ├── images │ │ │ │ ├── TriGeomMask.png │ │ │ │ └── star.jpg │ │ │ ├── lesson09.xhtml │ │ │ └── lesson09webgl.xhtml │ │ ├── lesson10 │ │ │ ├── Data │ │ │ │ ├── Mud.png │ │ │ │ ├── Sammy.jpg │ │ │ │ └── World.js │ │ │ ├── lesson10.xhtml │ │ │ └── lesson10webgl.xhtml │ │ ├── lesson11 │ │ │ ├── images │ │ │ │ └── Tim.bmp │ │ │ ├── lesson11.xhtml │ │ │ └── lesson11webgl.xhtml │ │ ├── lesson12 │ │ │ └── lesson12.xhtml │ │ ├── lesson13 │ │ │ ├── images │ │ │ │ └── BottomRight.png │ │ │ ├── lesson13.xhtml │ │ │ └── lesson13webgl.xhtml │ │ ├── lesson14 │ │ │ ├── lesson14.xhtml │ │ │ └── lesson14webgl.xhtml │ │ ├── lesson15 │ │ │ ├── images │ │ │ │ ├── green-pebbled-leather.jpg │ │ │ │ └── wood-grain.jpg │ │ │ ├── lesson15.xhtml │ │ │ └── lesson15webgl.xhtml │ │ ├── lesson16 │ │ │ ├── images │ │ │ │ └── Crate.jpg │ │ │ ├── lesson16.xhtml │ │ │ └── lesson16webgl.xhtml │ │ ├── package.opf │ │ ├── svg │ │ │ └── OpenGL-Square.svg │ │ └── three-js │ │ │ ├── Detector.js │ │ │ ├── dat.gui.min.js │ │ │ ├── jquery-1.9.1.js │ │ │ ├── prism.js │ │ │ ├── stats.js │ │ │ └── three.js │ ├── META-INF │ │ └── container.xml │ └── mimetype ├── NeHe-EPUB-17-32 │ ├── EPUB │ │ ├── css │ │ │ ├── NeHe-EPUB.css │ │ │ ├── fixed.css │ │ │ └── prism.css │ │ ├── fonts │ │ │ ├── LICENSE │ │ │ ├── gentilis_bold.typeface.json │ │ │ ├── gentilis_regular.typeface.json │ │ │ ├── helvetiker_bold.typeface.json │ │ │ └── helvetiker_regular.typeface.json │ │ ├── frontmatter │ │ │ ├── colophon.xhtml │ │ │ ├── cover.xhtml │ │ │ ├── preface.xhtml │ │ │ └── toc.xhtml │ │ ├── gfx │ │ │ ├── OrbitControls-Touch-Ortho.js │ │ │ └── gfx-scene.js │ │ ├── images │ │ │ ├── NeHe-17-32.png │ │ │ ├── checkerboard.jpg │ │ │ └── webgl.jpg │ │ ├── lesson17 │ │ │ ├── images │ │ │ │ ├── UV-Mapping.svg │ │ │ │ └── texture-atlas.jpg │ │ │ ├── lesson17.xhtml │ │ │ └── lesson17webgl.xhtml │ │ ├── lesson18 │ │ │ ├── images │ │ │ │ └── clouds.jpg │ │ │ ├── lesson18.xhtml │ │ │ └── lesson18webgl.xhtml │ │ ├── lesson19 │ │ │ ├── images │ │ │ │ ├── Cannon-Rho.svg │ │ │ │ ├── Cannon-Theta.svg │ │ │ │ ├── Restitution.svg │ │ │ │ ├── snowflake.png │ │ │ │ └── snowflake_illus.png │ │ │ ├── js │ │ │ │ ├── beachball.js │ │ │ │ └── cannon.js │ │ │ ├── lesson19.xhtml │ │ │ └── lesson19webgl.xhtml │ │ ├── lesson20 │ │ │ ├── images │ │ │ │ ├── Image1.jpg │ │ │ │ ├── Image2.jpg │ │ │ │ ├── Mask1.jpg │ │ │ │ └── Mask2.jpg │ │ │ ├── lesson20.xhtml │ │ │ └── lesson20webgl.xhtml │ │ ├── lesson21 │ │ │ ├── images │ │ │ │ ├── Crate.jpg │ │ │ │ ├── Eng_Drawing.png │ │ │ │ ├── grey_checkerboard.jpg │ │ │ │ └── persp_ortho_proj.png │ │ │ ├── lesson21.xhtml │ │ │ └── lesson21webgl.xhtml │ │ ├── lesson22 │ │ │ ├── images │ │ │ │ ├── flower-bump.jpg │ │ │ │ ├── flower.jpg │ │ │ │ ├── stone-bump.jpg │ │ │ │ └── stone.jpg │ │ │ ├── lesson22.xhtml │ │ │ └── lesson22webgl.xhtml │ │ ├── lesson23 │ │ │ ├── images │ │ │ │ ├── ElCapitanSphere.jpg │ │ │ │ ├── ElCapitanSquare.jpg │ │ │ │ └── Spherize.png │ │ │ ├── lesson23.xhtml │ │ │ └── lesson23webgl.xhtml │ │ ├── lesson24 │ │ │ └── lesson24.xhtml │ │ ├── lesson25 │ │ │ ├── data │ │ │ │ ├── Sphere.js │ │ │ │ ├── Torus.js │ │ │ │ └── Tube.js │ │ │ ├── images │ │ │ │ └── ball.png │ │ │ ├── lesson25.xhtml │ │ │ └── lesson25webgl.xhtml │ │ ├── lesson26 │ │ │ ├── images │ │ │ │ ├── ball.png │ │ │ │ └── envwall.png │ │ │ ├── lesson26.xhtml │ │ │ └── lesson26webgl.xhtml │ │ ├── lesson27 │ │ │ ├── images │ │ │ │ ├── brick_bump.jpg │ │ │ │ ├── brick_diffuse.jpg │ │ │ │ ├── brick_roughness.jpg │ │ │ │ ├── hardwood2_bump.jpg │ │ │ │ ├── hardwood2_diffuse.jpg │ │ │ │ ├── hardwood2_roughness.jpg │ │ │ │ └── land_ocean_ice_cloud_2048.jpg │ │ │ ├── lesson27.xhtml │ │ │ └── lesson27webgl.xhtml │ │ ├── lesson28 │ │ │ ├── images │ │ │ │ └── UV_Grid_Sm.jpg │ │ │ ├── lesson28.xhtml │ │ │ └── lesson28webgl.xhtml │ │ ├── lesson29 │ │ │ ├── images │ │ │ │ ├── GL.png │ │ │ │ ├── GL_Transparent.png │ │ │ │ └── Monitor.png │ │ │ ├── lesson29.xhtml │ │ │ └── lesson29webgl.xhtml │ │ ├── lesson30 │ │ │ ├── images │ │ │ │ ├── AABB.png │ │ │ │ ├── hardwood2_bump.jpg │ │ │ │ ├── hardwood2_diffuse.jpg │ │ │ │ ├── hardwood2_roughness.jpg │ │ │ │ └── raycaster.svg │ │ │ ├── lesson30.xhtml │ │ │ └── lesson30webgl.xhtml │ │ ├── lesson31 │ │ │ ├── lesson31.xhtml │ │ │ ├── lesson31webgl.xhtml │ │ │ └── models │ │ │ │ ├── AWD │ │ │ │ ├── simple.awd │ │ │ │ └── textures │ │ │ │ │ └── texture.jpg │ │ │ │ ├── Babylon │ │ │ │ ├── 0.jpg │ │ │ │ └── rabbit.babylon │ │ │ │ ├── Collada │ │ │ │ └── Shark.dae │ │ │ │ ├── OBJ │ │ │ │ └── banana.obj │ │ │ │ ├── PLY │ │ │ │ └── F117.ply │ │ │ │ ├── STL │ │ │ │ └── piano.stl │ │ │ │ ├── VRML │ │ │ │ └── house.wrl │ │ │ │ └── VTK │ │ │ │ └── bunny.vtk │ │ ├── lesson32 │ │ │ ├── images │ │ │ │ ├── hardwood2_bump.jpg │ │ │ │ ├── hardwood2_diffuse.jpg │ │ │ │ └── hardwood2_roughness.jpg │ │ │ ├── lesson32.xhtml │ │ │ └── lesson32webgl.xhtml │ │ ├── package.opf │ │ └── three-js │ │ │ ├── Detector.js │ │ │ ├── dat.gui.min.js │ │ │ ├── libs │ │ │ ├── Mirror.js │ │ │ ├── NURBSCurve.js │ │ │ ├── NURBSSurface.js │ │ │ ├── NURBSUtils.js │ │ │ └── TeapotBufferGeometry.js │ │ │ ├── loaders │ │ │ ├── AWDLoader.js │ │ │ ├── BabylonLoader.js │ │ │ ├── ColladaLoader.js │ │ │ ├── DDSLoader.js │ │ │ ├── OBJLoader.js │ │ │ ├── PDBLoader.js │ │ │ ├── PLYLoader.js │ │ │ ├── PVRLoader.js │ │ │ ├── STLLoader.js │ │ │ ├── VRMLLoader.js │ │ │ └── VTKLoader.js │ │ │ ├── postprocess │ │ │ ├── ClearPass.js │ │ │ ├── EffectComposer.js │ │ │ ├── MaskPass.js │ │ │ ├── RenderPass.js │ │ │ ├── ShaderPass.js │ │ │ └── TexturePass.js │ │ │ ├── prism.js │ │ │ ├── shaders │ │ │ ├── AdditiveBlendShader.js │ │ │ ├── CopyShader.js │ │ │ ├── HorizontalBlurShader.js │ │ │ └── VerticalBlurShader.js │ │ │ ├── stats.js │ │ │ └── three.js │ ├── META-INF │ │ └── container.xml │ └── mimetype ├── SVG_Animation.epub ├── SVG_Animation.jpg ├── Tiny-3-GLCover.epub ├── Tiny-Loader.epub ├── Tiny-Loader │ ├── EPUB │ │ ├── chapter01.xhtml │ │ ├── images │ │ │ ├── NeHe.jpg │ │ │ └── epub_threejs_logo.jpeg │ │ ├── js │ │ │ ├── Detector.js │ │ │ └── three.js │ │ ├── nav.xhtml │ │ ├── package.opf │ │ ├── style.css │ │ └── titlepage.xhtml │ ├── META-INF │ │ └── container.xml │ └── mimetype ├── accessible_epub_3 │ ├── EPUB │ │ ├── bk01-toc.xhtml │ │ ├── ch01.xhtml │ │ ├── ch01s02.xhtml │ │ ├── ch02.xhtml │ │ ├── ch02s02.xhtml │ │ ├── ch02s03.xhtml │ │ ├── ch03.xhtml │ │ ├── ch03s02.xhtml │ │ ├── ch03s03.xhtml │ │ ├── ch03s04.xhtml │ │ ├── ch03s05.xhtml │ │ ├── ch03s06.xhtml │ │ ├── ch04.xhtml │ │ ├── co01.xhtml │ │ ├── cover.xhtml │ │ ├── covers │ │ │ └── 9781449328030_lrg.jpg │ │ ├── css │ │ │ ├── epub.css │ │ │ └── synth.css │ │ ├── fonts │ │ │ ├── FreeSansBold.otf │ │ │ ├── FreeSerif.otf │ │ │ ├── UbuntuMono-B.ttf │ │ │ ├── UbuntuMono-BI.ttf │ │ │ ├── UbuntuMono-R.ttf │ │ │ └── UbuntuMono-RI.ttf │ │ ├── images │ │ │ ├── spi_global_ad.png │ │ │ └── web │ │ │ │ └── epub3_0401.png │ │ ├── index.xhtml │ │ ├── lexicon │ │ │ ├── en.pls │ │ │ └── fr.pls │ │ ├── package.opf │ │ ├── pr01.xhtml │ │ ├── pr01s02.xhtml │ │ ├── pr01s03.xhtml │ │ ├── pr01s04.xhtml │ │ ├── pr01s05.xhtml │ │ └── spi-ad.xhtml │ ├── META-INF │ │ └── container.xml │ └── mimetype ├── alice3 │ ├── .project │ ├── META-INF │ │ └── container.xml │ ├── chapter01.xhtml │ ├── chapter02.xhtml │ ├── chapter03.xhtml │ ├── chapter04.xhtml │ ├── chapter05.xhtml │ ├── chapter06.xhtml │ ├── chapter07.xhtml │ ├── chapter08.xhtml │ ├── chapter09.xhtml │ ├── chapter10.xhtml │ ├── chapter11.xhtml │ ├── chapter12.xhtml │ ├── content.opf │ ├── fonts │ │ ├── MinionPro-It.otf │ │ └── MinionPro.otf │ ├── images │ │ ├── alice01a.gif │ │ ├── alice02a.gif │ │ ├── alice03a.gif │ │ ├── alice04a.gif │ │ ├── alice05a.gif │ │ ├── alice06a.gif │ │ ├── alice07a.gif │ │ ├── alice08a.gif │ │ ├── alice09a.gif │ │ ├── alice10a.gif │ │ ├── alice11a.gif │ │ ├── alice12a.gif │ │ ├── alice13a.gif │ │ ├── alice14a.gif │ │ ├── alice15a.gif │ │ ├── alice16a.gif │ │ ├── alice17a.gif │ │ ├── alice18a.gif │ │ ├── alice19a.gif │ │ ├── alice20a.gif │ │ ├── alice21a.gif │ │ ├── alice22a.gif │ │ ├── alice23a.gif │ │ ├── alice24a.gif │ │ ├── alice25a.gif │ │ ├── alice26a.gif │ │ ├── alice27a.gif │ │ ├── alice28a.gif │ │ ├── alice29a.gif │ │ ├── alice30a.gif │ │ ├── alice31a.gif │ │ ├── alice32a.gif │ │ ├── alice33a.gif │ │ ├── alice34a.gif │ │ ├── alice35a.gif │ │ ├── alice36a.gif │ │ ├── alice37a.gif │ │ ├── alice38a.gif │ │ ├── alice39a.gif │ │ ├── alice40a.gif │ │ ├── alice41a.gif │ │ └── alice42a.gif │ ├── mimetype │ ├── nav.xhtml │ ├── style.css │ └── titlepage.xhtml ├── cyclones │ ├── .project │ ├── Cyclone-Cover.png │ ├── META-INF │ │ └── container.xml │ ├── Thumbnails │ │ └── thumbnail.png │ ├── article.css │ ├── content.opf │ ├── copyright.xhtml │ ├── extratropical_cyclone │ │ ├── 600px-ETS_Florence_2006.jpg │ │ ├── 800px-Cyclonemodels.gif │ │ ├── 800px-Snowcsi.gif │ │ ├── Jetstreak.gif │ │ ├── Medionalflowpattern.jpg │ │ ├── Quikscatcyclone.jpg │ │ ├── UK-Cyclone.svg │ │ ├── Zonalflow.gif │ │ └── index.xhtml │ ├── gnu_license.xhtml │ ├── mimetype │ ├── subtropical_cyclone │ │ ├── Subtropical_Storm_2000.jpg │ │ └── index.xhtml │ ├── titlepage.xhtml │ ├── toc.ncx │ ├── tropical_cyclone │ │ ├── 480px-Typhoon_saomai_060807.jpg │ │ ├── 600px-Hurricane_Vince_eye_2005.jpg │ │ ├── 600px-Typhoon_Odessa_1985.jpg │ │ ├── 731px-Brazil_hurricane.jpg │ │ ├── 783px-GulfMexTemps_2005Hurricanes.gif │ │ ├── 800px-Cyclone_Catarina_from_the_ISS_on_March_26_2004.jpg │ │ ├── 800px-Epsilon_ISS012-E-10097.jpg │ │ ├── 800px-Global_tropical_cyclone_tracks-edit2.jpg │ │ ├── 800px-Hurricane_katrina_damage_gulfport_mississippi.jpg │ │ ├── 800px-Irene_TRM_20050815_lrg.jpg │ │ ├── Atlantic_hurricane_graphic.gif │ │ ├── Cyclone_Deaths.svg │ │ ├── Cyclone_Monica.gif │ │ ├── Hurricane_profile_graphic.svg │ │ ├── Hurricane_structure_graphic.jpg │ │ ├── Isidore091902-p3sunset2.jpg │ │ ├── Typhoonsizes.jpg │ │ └── index.xhtml │ └── webarticle.css ├── emerald-city-oz │ ├── META-INF │ │ ├── container.xml │ │ └── metadata.xml │ ├── OPS │ │ ├── about.xhtml │ │ ├── cover.xhtml │ │ ├── css │ │ │ ├── about.css │ │ │ ├── feedbooks.css │ │ │ ├── footnotes.css │ │ │ ├── main.css │ │ │ ├── page.css │ │ │ └── title.css │ │ ├── fb.ncx │ │ ├── fb.opf │ │ ├── feedbooks.xhtml │ │ ├── images │ │ │ ├── cover.png │ │ │ ├── logo-feedbooks-tiny.png │ │ │ └── logo-feedbooks.png │ │ ├── main0.xhtml │ │ ├── main1.xhtml │ │ ├── main10.xhtml │ │ ├── main11.xhtml │ │ ├── main12.xhtml │ │ ├── main13.xhtml │ │ ├── main14.xhtml │ │ ├── main15.xhtml │ │ ├── main16.xhtml │ │ ├── main17.xhtml │ │ ├── main18.xhtml │ │ ├── main19.xhtml │ │ ├── main2.xhtml │ │ ├── main20.xhtml │ │ ├── main21.xhtml │ │ ├── main22.xhtml │ │ ├── main23.xhtml │ │ ├── main24.xhtml │ │ ├── main25.xhtml │ │ ├── main26.xhtml │ │ ├── main27.xhtml │ │ ├── main28.xhtml │ │ ├── main29.xhtml │ │ ├── main3.xhtml │ │ ├── main30.xhtml │ │ ├── main4.xhtml │ │ ├── main5.xhtml │ │ ├── main6.xhtml │ │ ├── main7.xhtml │ │ ├── main8.xhtml │ │ ├── main9.xhtml │ │ └── title.xhtml │ └── mimetype ├── epubReadingSystem.epub ├── epubReadingSystem │ ├── EPUB │ │ ├── img │ │ │ ├── cover.png │ │ │ └── cover.psd │ │ ├── index.xhtml │ │ ├── nav.xhtml │ │ └── package.opf │ ├── META-INF │ │ └── container.xml │ └── mimetype ├── epubReadingSystem_EX.epub ├── epubReadingSystem_EX │ ├── META-INF │ │ └── container.xml │ ├── Readium_logo.png │ ├── iframe │ │ └── iframe.xhtml │ ├── img │ │ ├── cover.png │ │ └── cover.psd │ ├── index.xhtml │ ├── mimetype │ ├── nav.xhtml │ ├── package.opf │ └── subiframe │ │ └── iframe_inner.xhtml ├── epub_library.json ├── epub_library.opds ├── epub_tests_a11y.opds ├── epub_tests_a11y.png ├── epub_testsuite.opds ├── epub_testsuite.png ├── epub_threejs_logo.jpg ├── idpf_samples.opds ├── idpf_samples.png ├── internal_link.epub ├── internal_link.png ├── moby_dick │ ├── META-INF │ │ └── container.xml │ ├── OPS │ │ ├── chapter_001.xhtml │ │ ├── chapter_002.xhtml │ │ ├── chapter_003.xhtml │ │ ├── chapter_004.xhtml │ │ ├── chapter_005.xhtml │ │ ├── chapter_006.xhtml │ │ ├── chapter_007.xhtml │ │ ├── chapter_008.xhtml │ │ ├── chapter_009.xhtml │ │ ├── chapter_010.xhtml │ │ ├── chapter_011.xhtml │ │ ├── chapter_012.xhtml │ │ ├── chapter_013.xhtml │ │ ├── chapter_014.xhtml │ │ ├── chapter_015.xhtml │ │ ├── chapter_016.xhtml │ │ ├── chapter_017.xhtml │ │ ├── chapter_018.xhtml │ │ ├── chapter_019.xhtml │ │ ├── chapter_020.xhtml │ │ ├── chapter_021.xhtml │ │ ├── chapter_022.xhtml │ │ ├── chapter_023.xhtml │ │ ├── chapter_024.xhtml │ │ ├── chapter_025.xhtml │ │ ├── chapter_026.xhtml │ │ ├── chapter_027.xhtml │ │ ├── chapter_028.xhtml │ │ ├── chapter_029.xhtml │ │ ├── chapter_030.xhtml │ │ ├── chapter_031.xhtml │ │ ├── chapter_032.xhtml │ │ ├── chapter_033.xhtml │ │ ├── chapter_034.xhtml │ │ ├── chapter_035.xhtml │ │ ├── chapter_036.xhtml │ │ ├── chapter_037.xhtml │ │ ├── chapter_038.xhtml │ │ ├── chapter_039.xhtml │ │ ├── chapter_040.xhtml │ │ ├── chapter_041.xhtml │ │ ├── chapter_042.xhtml │ │ ├── chapter_043.xhtml │ │ ├── chapter_044.xhtml │ │ ├── chapter_045.xhtml │ │ ├── chapter_046.xhtml │ │ ├── chapter_047.xhtml │ │ ├── chapter_048.xhtml │ │ ├── chapter_049.xhtml │ │ ├── chapter_050.xhtml │ │ ├── chapter_051.xhtml │ │ ├── chapter_052.xhtml │ │ ├── chapter_053.xhtml │ │ ├── chapter_054.xhtml │ │ ├── chapter_055.xhtml │ │ ├── chapter_056.xhtml │ │ ├── chapter_057.xhtml │ │ ├── chapter_058.xhtml │ │ ├── chapter_059.xhtml │ │ ├── chapter_060.xhtml │ │ ├── chapter_061.xhtml │ │ ├── chapter_062.xhtml │ │ ├── chapter_063.xhtml │ │ ├── chapter_064.xhtml │ │ ├── chapter_065.xhtml │ │ ├── chapter_066.xhtml │ │ ├── chapter_067.xhtml │ │ ├── chapter_068.xhtml │ │ ├── chapter_069.xhtml │ │ ├── chapter_070.xhtml │ │ ├── chapter_071.xhtml │ │ ├── chapter_072.xhtml │ │ ├── chapter_073.xhtml │ │ ├── chapter_074.xhtml │ │ ├── chapter_075.xhtml │ │ ├── chapter_076.xhtml │ │ ├── chapter_077.xhtml │ │ ├── chapter_078.xhtml │ │ ├── chapter_079.xhtml │ │ ├── chapter_080.xhtml │ │ ├── chapter_081.xhtml │ │ ├── chapter_082.xhtml │ │ ├── chapter_083.xhtml │ │ ├── chapter_084.xhtml │ │ ├── chapter_085.xhtml │ │ ├── chapter_086.xhtml │ │ ├── chapter_087.xhtml │ │ ├── chapter_088.xhtml │ │ ├── chapter_089.xhtml │ │ ├── chapter_090.xhtml │ │ ├── chapter_091.xhtml │ │ ├── chapter_092.xhtml │ │ ├── chapter_093.xhtml │ │ ├── chapter_094.xhtml │ │ ├── chapter_095.xhtml │ │ ├── chapter_096.xhtml │ │ ├── chapter_097.xhtml │ │ ├── chapter_098.xhtml │ │ ├── chapter_099.xhtml │ │ ├── chapter_100.xhtml │ │ ├── chapter_101.xhtml │ │ ├── chapter_102.xhtml │ │ ├── chapter_103.xhtml │ │ ├── chapter_104.xhtml │ │ ├── chapter_105.xhtml │ │ ├── chapter_106.xhtml │ │ ├── chapter_107.xhtml │ │ ├── chapter_108.xhtml │ │ ├── chapter_109.xhtml │ │ ├── chapter_110.xhtml │ │ ├── chapter_111.xhtml │ │ ├── chapter_112.xhtml │ │ ├── chapter_113.xhtml │ │ ├── chapter_114.xhtml │ │ ├── chapter_115.xhtml │ │ ├── chapter_116.xhtml │ │ ├── chapter_117.xhtml │ │ ├── chapter_118.xhtml │ │ ├── chapter_119.xhtml │ │ ├── chapter_120.xhtml │ │ ├── chapter_121.xhtml │ │ ├── chapter_122.xhtml │ │ ├── chapter_123.xhtml │ │ ├── chapter_124.xhtml │ │ ├── chapter_125.xhtml │ │ ├── chapter_126.xhtml │ │ ├── chapter_127.xhtml │ │ ├── chapter_128.xhtml │ │ ├── chapter_129.xhtml │ │ ├── chapter_130.xhtml │ │ ├── chapter_131.xhtml │ │ ├── chapter_132.xhtml │ │ ├── chapter_133.xhtml │ │ ├── chapter_134.xhtml │ │ ├── chapter_135.xhtml │ │ ├── chapter_136.xhtml │ │ ├── copyright.xhtml │ │ ├── cover.xhtml │ │ ├── css │ │ │ └── stylesheet.css │ │ ├── epigraph_001.xhtml │ │ ├── fonts │ │ │ ├── STIXGeneral.otf │ │ │ ├── STIXGeneralBol.otf │ │ │ ├── STIXGeneralBolIta.otf │ │ │ └── STIXGeneralItalic.otf │ │ ├── images │ │ │ ├── 9780316000000.jpg │ │ │ └── Moby-Dick_FE_title_page.jpg │ │ ├── introduction_001.xhtml │ │ ├── package.opf │ │ ├── preface_001.xhtml │ │ ├── titlepage.xhtml │ │ ├── toc-short.xhtml │ │ └── toc.xhtml │ └── mimetype ├── page-blanche │ ├── EPUB │ │ ├── Content │ │ │ ├── PageBlanche_Page_000.xhtml │ │ │ ├── PageBlanche_Page_001.xhtml │ │ │ ├── PageBlanche_Page_002.xhtml │ │ │ ├── PageBlanche_Page_003.xhtml │ │ │ ├── PageBlanche_Page_004.xhtml │ │ │ ├── PageBlanche_Page_005.xhtml │ │ │ ├── PageBlanche_Page_006.xhtml │ │ │ ├── PageBlanche_Page_007.xhtml │ │ │ ├── PageBlanche_Page_008.xhtml │ │ │ └── cover.xhtml │ │ ├── Image │ │ │ ├── PageBlanche_Page_001.jpg │ │ │ ├── PageBlanche_Page_002.jpg │ │ │ ├── PageBlanche_Page_003.jpg │ │ │ ├── PageBlanche_Page_004.jpg │ │ │ ├── PageBlanche_Page_005.jpg │ │ │ ├── PageBlanche_Page_006.jpg │ │ │ ├── PageBlanche_Page_007.jpg │ │ │ ├── PageBlanche_Page_008.jpg │ │ │ └── cover.jpg │ │ ├── Navigation │ │ │ ├── nav.xhtml │ │ │ └── toc.ncx │ │ ├── Style │ │ │ └── style.css │ │ └── package.opf │ ├── META-INF │ │ └── container.xml │ └── mimetype └── producing-oss │ ├── META-INF │ └── container.xml │ ├── OEBPS │ ├── apa.html │ ├── apb.html │ ├── apc.html │ ├── apd.html │ ├── ape.html │ ├── bk01-toc.html │ ├── ch01.html │ ├── ch01s02.html │ ├── ch02.html │ ├── ch02s02.html │ ├── ch02s03.html │ ├── ch02s04.html │ ├── ch03.html │ ├── ch03s02.html │ ├── ch03s03.html │ ├── ch03s04.html │ ├── ch03s05.html │ ├── ch03s06.html │ ├── ch03s07.html │ ├── ch03s08.html │ ├── ch04.html │ ├── ch04s02.html │ ├── ch04s03.html │ ├── ch05.html │ ├── ch05s02.html │ ├── ch05s03.html │ ├── ch05s04.html │ ├── ch05s05.html │ ├── ch05s06.html │ ├── ch05s07.html │ ├── ch05s08.html │ ├── ch06.html │ ├── ch06s02.html │ ├── ch06s03.html │ ├── ch06s04.html │ ├── ch06s05.html │ ├── ch06s06.html │ ├── ch07.html │ ├── ch07s02.html │ ├── ch07s03.html │ ├── ch07s04.html │ ├── ch07s05.html │ ├── ch07s06.html │ ├── ch07s07.html │ ├── ch08.html │ ├── ch08s02.html │ ├── ch08s03.html │ ├── ch08s04.html │ ├── ch08s05.html │ ├── ch08s06.html │ ├── ch09.html │ ├── ch09s02.html │ ├── ch09s03.html │ ├── ch09s04.html │ ├── ch09s05.html │ ├── ch09s06.html │ ├── ch09s07.html │ ├── ch09s08.html │ ├── content.opf │ ├── index.html │ ├── pr01.html │ ├── pr01s02.html │ ├── pr01s03.html │ ├── pr01s04.html │ ├── pr01s05.html │ ├── producing-oss.jpg │ └── toc.ncx │ ├── mimetype │ ├── producing-oss.epub │ └── producingoss.epub ├── firebase.json ├── firebase_from_divshot.json ├── license.txt ├── package.json ├── package ├── package_base.cson ├── package_scripts_base.cson ├── package_scripts_build.cson ├── package_scripts_dist_base.cson ├── package_scripts_dist_chromeApp.cson ├── package_scripts_dist_cloudReader.cson ├── package_scripts_dist_cloudReaderLite.cson ├── package_scripts_epubs.cson ├── package_scripts_http.cson ├── package_scripts_test_base.cson ├── package_scripts_test_sauce.cson └── package_scripts_travis.cson ├── src ├── chrome-app │ ├── analytics │ │ └── ExtensionAnalytics.js │ ├── background.js │ ├── epubReadingSystem.js │ ├── i18n │ │ └── Strings.js │ ├── icons │ │ ├── devBuild │ │ │ ├── large.png │ │ │ └── medium.png │ │ ├── large.png │ │ ├── medium.png │ │ └── small.png │ ├── index.html │ ├── manifest.json │ ├── requirejs-config.js │ └── storage │ │ ├── ChromeSettings.js │ │ └── FileSystemStorage.js ├── cloud-reader-lite │ └── index.html ├── cloud-reader │ └── index.html ├── css │ ├── annotations.css │ ├── library.css │ ├── readium_js.css │ ├── settings.css │ ├── sourcesanspro.css │ ├── viewer.css │ └── viewer_audio.css ├── fonts │ ├── Noto-Serif │ │ ├── LICENSE.txt │ │ ├── Noto-Serif-700.woff │ │ ├── Noto-Serif-700italic.woff │ │ ├── Noto-Serif-italic.woff │ │ ├── Noto-Serif-regular.woff │ │ └── Noto-Serif.css │ ├── Open-Sans │ │ ├── LICENSE.txt │ │ ├── Open-Sans-700.woff │ │ ├── Open-Sans-700italic.woff │ │ ├── Open-Sans-italic.woff │ │ ├── Open-Sans-regular.woff │ │ └── Open-Sans.css │ ├── OpenDyslexic │ │ ├── License.txt │ │ ├── OpenDyslexic-Bold.woff │ │ ├── OpenDyslexic-BoldItalic.woff │ │ ├── OpenDyslexic-Italic.woff │ │ ├── OpenDyslexic-Regular.woff │ │ └── OpenDyslexic.css │ └── fonts.js ├── i18n │ ├── Strings.js │ └── _locales │ │ ├── de │ │ └── messages.json │ │ ├── en_US │ │ └── messages.json │ │ ├── es │ │ └── messages.json │ │ ├── fr │ │ └── messages.json │ │ ├── id │ │ └── messages.json │ │ ├── it │ │ └── messages.json │ │ ├── ja │ │ └── messages.json │ │ ├── ko │ │ └── messages.json │ │ ├── pt_BR │ │ └── messages.json │ │ ├── zh_CN │ │ └── messages.json │ │ └── zh_TW │ │ └── messages.json ├── images │ ├── about_readium_logo.png │ ├── covers │ │ ├── cover1.jpg │ │ ├── cover2.jpg │ │ ├── cover3.jpg │ │ ├── cover4.jpg │ │ ├── cover5.jpg │ │ ├── cover6.jpg │ │ ├── cover7.jpg │ │ └── cover8.jpg │ ├── epub-touch-icon.png │ ├── epub_favicon.ico │ ├── glyphicons_115_text_smaller.png │ ├── glyphicons_116_text_bigger.png │ ├── ico_doublepage_up.png │ ├── ico_singlepage_up.png │ ├── library_arrow.png │ ├── margin1_off.png │ ├── margin4_off.png │ ├── pagination.svg │ ├── pagination1.svg │ ├── partner_logos.png │ ├── readium-touch-icon.png │ ├── readium_favicon.png │ └── readium_logo.png ├── js │ ├── Dialogs.js │ ├── EpubLibrary.js │ ├── EpubLibraryManager.js │ ├── EpubLibraryOPDS.js │ ├── EpubReader.js │ ├── EpubReaderBackgroundAudioTrack.js │ ├── EpubReaderMediaOverlays.js │ ├── Keyboard.js │ ├── ModuleConfig.js │ ├── PackageParser.js │ ├── ReaderSettingsDialog.js │ ├── ReaderSettingsDialog_Keyboard.js │ ├── ReadiumViewer.js │ ├── ReadiumViewerLite.js │ ├── Spinner.js │ ├── analytics │ │ └── Analytics.js │ ├── gestures.js │ ├── migration │ │ └── MigrationManager.js │ ├── storage │ │ ├── RemoteStorageManager.js │ │ ├── Settings.js │ │ ├── StaticStorageManager.js │ │ ├── UnpackedDirLoader.js │ │ └── ZipFileLoader.js │ ├── versioning │ │ └── ReadiumVersioning.js │ └── workers │ │ ├── ContentTransformer.js │ │ ├── EpubLibraryWriter.js │ │ ├── Messages.js │ │ └── WorkerProxy.js ├── logos │ ├── mini-logo.png │ ├── readium (no glow).svg │ ├── readium rotated (no glow).svg │ ├── readium-rotated.svg │ └── readium.svg └── templates │ ├── about-dialog.html │ ├── add-epub-dialog.html │ ├── details-body.html │ ├── details-dialog.html │ ├── empty-library.html │ ├── library-body.html │ ├── library-item.html │ ├── library-navbar.html │ ├── managed-buttons.html │ ├── managed-dialog.html │ ├── progress-dialog.html │ ├── reader-body-page-btns.html │ ├── reader-body.html │ ├── reader-navbar.html │ ├── settings-dialog.html │ └── settings-keyboard-item.html ├── tests ├── config.js ├── epubs │ ├── accessible_epub_3.epub │ └── cc-shared-culture.epub ├── manifest.json ├── old_tests.js ├── test.pem └── tests.js └── yuidocs.json /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/README.md -------------------------------------------------------------------------------- /README_cloud-reader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/README_cloud-reader.md -------------------------------------------------------------------------------- /Tiny-3-GLCover.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/Tiny-3-GLCover.epub -------------------------------------------------------------------------------- /dev/RequireJS_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/dev/RequireJS_config.js -------------------------------------------------------------------------------- /dev/index_RequireJS_multiple-bundles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/dev/index_RequireJS_multiple-bundles.html -------------------------------------------------------------------------------- /dev/index_RequireJS_multiple-bundles_LITE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/dev/index_RequireJS_multiple-bundles_LITE.html -------------------------------------------------------------------------------- /dev/index_RequireJS_no-optimize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/dev/index_RequireJS_no-optimize.html -------------------------------------------------------------------------------- /dev/index_RequireJS_no-optimize_LITE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/dev/index_RequireJS_no-optimize_LITE.html -------------------------------------------------------------------------------- /dev/index_RequireJS_single-bundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/dev/index_RequireJS_single-bundle.html -------------------------------------------------------------------------------- /dev/index_RequireJS_single-bundle_LITE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/dev/index_RequireJS_single-bundle_LITE.html -------------------------------------------------------------------------------- /dev/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/dev/version.json -------------------------------------------------------------------------------- /epub_content/EPUB-Spec-Unzipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/EPUB-Spec-Unzipped.png -------------------------------------------------------------------------------- /epub_content/EPUB-Spec-Zipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/EPUB-Spec-Zipped.png -------------------------------------------------------------------------------- /epub_content/Hales-Motivic-Measure/EPUB/css/commonltr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Hales-Motivic-Measure/EPUB/css/commonltr.css -------------------------------------------------------------------------------- /epub_content/Hales-Motivic-Measure/EPUB/css/epub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Hales-Motivic-Measure/EPUB/css/epub.css -------------------------------------------------------------------------------- /epub_content/Hales-Motivic-Measure/EPUB/css/mot_int.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Hales-Motivic-Measure/EPUB/css/mot_int.css -------------------------------------------------------------------------------- /epub_content/Hales-Motivic-Measure/EPUB/img/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Hales-Motivic-Measure/EPUB/img/cover.png -------------------------------------------------------------------------------- /epub_content/Hales-Motivic-Measure/EPUB/img/mot_int0x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Hales-Motivic-Measure/EPUB/img/mot_int0x.png -------------------------------------------------------------------------------- /epub_content/Hales-Motivic-Measure/EPUB/img/mot_int1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Hales-Motivic-Measure/EPUB/img/mot_int1x.png -------------------------------------------------------------------------------- /epub_content/Hales-Motivic-Measure/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Hales-Motivic-Measure/EPUB/package.opf -------------------------------------------------------------------------------- /epub_content/Hales-Motivic-Measure/EPUB/xhtml/ch1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Hales-Motivic-Measure/EPUB/xhtml/ch1.html -------------------------------------------------------------------------------- /epub_content/Hales-Motivic-Measure/EPUB/xhtml/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Hales-Motivic-Measure/EPUB/xhtml/copyright.html -------------------------------------------------------------------------------- /epub_content/Hales-Motivic-Measure/EPUB/xhtml/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Hales-Motivic-Measure/EPUB/xhtml/nav.html -------------------------------------------------------------------------------- /epub_content/Hales-Motivic-Measure/EPUB/xhtml/titlepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Hales-Motivic-Measure/EPUB/xhtml/titlepage.html -------------------------------------------------------------------------------- /epub_content/Hales-Motivic-Measure/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Hales-Motivic-Measure/META-INF/container.xml -------------------------------------------------------------------------------- /epub_content/Hales-Motivic-Measure/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/css/NeHe-EPUB.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/css/NeHe-EPUB.css -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/css/NeHe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/css/NeHe.css -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/css/prism.css -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/fonts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/fonts/LICENSE -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/frontmatter/colophon.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/frontmatter/colophon.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/frontmatter/cover.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/frontmatter/cover.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/frontmatter/intro.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/frontmatter/intro.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/frontmatter/preface.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/frontmatter/preface.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/frontmatter/toc.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/frontmatter/toc.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/gfx/gfx-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/gfx/gfx-scene.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/images/NeHe-1-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/images/NeHe-1-16.png -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/images/checkerboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/images/checkerboard.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/images/webgl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/images/webgl.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson01/lesson01.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson01/lesson01.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson02/lesson02.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson02/lesson02.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson02/lesson02webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson02/lesson02webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson03/lesson03.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson03/lesson03.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson03/lesson03webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson03/lesson03webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson04/lesson04.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson04/lesson04.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson04/lesson04webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson04/lesson04webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson05/lesson05.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson05/lesson05.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson05/lesson05webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson05/lesson05webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson06/images/NeHe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson06/images/NeHe.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson06/lesson06.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson06/lesson06.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson06/lesson06webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson06/lesson06webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson07/lesson07.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson07/lesson07.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson07/lesson07webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson07/lesson07webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson08/images/Glass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson08/images/Glass.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson08/lesson08.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson08/lesson08.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson08/lesson08webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson08/lesson08webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson09/images/star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson09/images/star.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson09/lesson09.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson09/lesson09.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson09/lesson09webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson09/lesson09webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson10/Data/Mud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson10/Data/Mud.png -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson10/Data/Sammy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson10/Data/Sammy.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson10/Data/World.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson10/Data/World.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson10/lesson10.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson10/lesson10.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson10/lesson10webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson10/lesson10webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson11/images/Tim.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson11/images/Tim.bmp -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson11/lesson11.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson11/lesson11.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson11/lesson11webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson11/lesson11webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson12/lesson12.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson12/lesson12.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson13/lesson13.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson13/lesson13.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson13/lesson13webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson13/lesson13webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson14/lesson14.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson14/lesson14.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson14/lesson14webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson14/lesson14webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson15/images/wood-grain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson15/images/wood-grain.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson15/lesson15.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson15/lesson15.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson15/lesson15webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson15/lesson15webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson16/images/Crate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson16/images/Crate.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson16/lesson16.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson16/lesson16.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/lesson16/lesson16webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/lesson16/lesson16webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/package.opf -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/svg/OpenGL-Square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/svg/OpenGL-Square.svg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/three-js/Detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/three-js/Detector.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/three-js/dat.gui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/three-js/dat.gui.min.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/three-js/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/three-js/jquery-1.9.1.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/three-js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/three-js/prism.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/three-js/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/three-js/stats.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/EPUB/three-js/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/EPUB/three-js/three.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-1-16/META-INF/container.xml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-1-16/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/css/NeHe-EPUB.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/css/NeHe-EPUB.css -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/css/fixed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/css/fixed.css -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/css/prism.css -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/fonts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/fonts/LICENSE -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/frontmatter/colophon.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/frontmatter/colophon.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/frontmatter/cover.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/frontmatter/cover.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/frontmatter/preface.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/frontmatter/preface.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/frontmatter/toc.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/frontmatter/toc.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/gfx/gfx-scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/gfx/gfx-scene.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/images/NeHe-17-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/images/NeHe-17-32.png -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/images/checkerboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/images/checkerboard.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/images/webgl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/images/webgl.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson17/lesson17.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson17/lesson17.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson17/lesson17webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson17/lesson17webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson18/images/clouds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson18/images/clouds.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson18/lesson18.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson18/lesson18.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson18/lesson18webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson18/lesson18webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson19/images/snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson19/images/snowflake.png -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson19/js/beachball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson19/js/beachball.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson19/js/cannon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson19/js/cannon.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson19/lesson19.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson19/lesson19.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson19/lesson19webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson19/lesson19webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson20/images/Image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson20/images/Image1.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson20/images/Image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson20/images/Image2.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson20/images/Mask1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson20/images/Mask1.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson20/images/Mask2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson20/images/Mask2.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson20/lesson20.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson20/lesson20.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson20/lesson20webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson20/lesson20webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson21/images/Crate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson21/images/Crate.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson21/lesson21.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson21/lesson21.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson21/lesson21webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson21/lesson21webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson22/images/flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson22/images/flower.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson22/images/stone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson22/images/stone.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson22/lesson22.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson22/lesson22.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson22/lesson22webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson22/lesson22webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson23/images/Spherize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson23/images/Spherize.png -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson23/lesson23.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson23/lesson23.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson23/lesson23webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson23/lesson23webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson24/lesson24.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson24/lesson24.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson25/data/Sphere.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson25/data/Sphere.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson25/data/Torus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson25/data/Torus.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson25/data/Tube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson25/data/Tube.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson25/images/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson25/images/ball.png -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson25/lesson25.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson25/lesson25.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson25/lesson25webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson25/lesson25webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson26/images/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson26/images/ball.png -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson26/images/envwall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson26/images/envwall.png -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson26/lesson26.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson26/lesson26.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson26/lesson26webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson26/lesson26webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson27/lesson27.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson27/lesson27.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson27/lesson27webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson27/lesson27webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson28/lesson28.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson28/lesson28.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson28/lesson28webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson28/lesson28webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson29/images/GL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson29/images/GL.png -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson29/images/Monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson29/images/Monitor.png -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson29/lesson29.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson29/lesson29.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson29/lesson29webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson29/lesson29webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson30/images/AABB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson30/images/AABB.png -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson30/images/raycaster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson30/images/raycaster.svg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson30/lesson30.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson30/lesson30.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson30/lesson30webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson30/lesson30webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson31/lesson31.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson31/lesson31.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson31/lesson31webgl.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson31/lesson31webgl.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson31/models/Babylon/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson31/models/Babylon/0.jpg -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/lesson32/lesson32.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/lesson32/lesson32.xhtml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/package.opf -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/three-js/Detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/three-js/Detector.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/three-js/dat.gui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/three-js/dat.gui.min.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/three-js/libs/Mirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/three-js/libs/Mirror.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/three-js/libs/NURBSCurve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/three-js/libs/NURBSCurve.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/three-js/libs/NURBSUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/three-js/libs/NURBSUtils.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/three-js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/three-js/prism.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/three-js/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/three-js/stats.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/EPUB/three-js/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/EPUB/three-js/three.js -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/NeHe-EPUB-17-32/META-INF/container.xml -------------------------------------------------------------------------------- /epub_content/NeHe-EPUB-17-32/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /epub_content/SVG_Animation.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/SVG_Animation.epub -------------------------------------------------------------------------------- /epub_content/SVG_Animation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/SVG_Animation.jpg -------------------------------------------------------------------------------- /epub_content/Tiny-3-GLCover.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Tiny-3-GLCover.epub -------------------------------------------------------------------------------- /epub_content/Tiny-Loader.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Tiny-Loader.epub -------------------------------------------------------------------------------- /epub_content/Tiny-Loader/EPUB/chapter01.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Tiny-Loader/EPUB/chapter01.xhtml -------------------------------------------------------------------------------- /epub_content/Tiny-Loader/EPUB/images/NeHe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Tiny-Loader/EPUB/images/NeHe.jpg -------------------------------------------------------------------------------- /epub_content/Tiny-Loader/EPUB/images/epub_threejs_logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Tiny-Loader/EPUB/images/epub_threejs_logo.jpeg -------------------------------------------------------------------------------- /epub_content/Tiny-Loader/EPUB/js/Detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Tiny-Loader/EPUB/js/Detector.js -------------------------------------------------------------------------------- /epub_content/Tiny-Loader/EPUB/js/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Tiny-Loader/EPUB/js/three.js -------------------------------------------------------------------------------- /epub_content/Tiny-Loader/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Tiny-Loader/EPUB/nav.xhtml -------------------------------------------------------------------------------- /epub_content/Tiny-Loader/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Tiny-Loader/EPUB/package.opf -------------------------------------------------------------------------------- /epub_content/Tiny-Loader/EPUB/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Tiny-Loader/EPUB/style.css -------------------------------------------------------------------------------- /epub_content/Tiny-Loader/EPUB/titlepage.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Tiny-Loader/EPUB/titlepage.xhtml -------------------------------------------------------------------------------- /epub_content/Tiny-Loader/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/Tiny-Loader/META-INF/container.xml -------------------------------------------------------------------------------- /epub_content/Tiny-Loader/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/bk01-toc.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/bk01-toc.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/ch01.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/ch01.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/ch01s02.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/ch01s02.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/ch02.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/ch02.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/ch02s02.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/ch02s02.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/ch02s03.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/ch02s03.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/ch03.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/ch03.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/ch03s02.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/ch03s02.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/ch03s03.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/ch03s03.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/ch03s04.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/ch03s04.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/ch03s05.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/ch03s05.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/ch03s06.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/ch03s06.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/ch04.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/ch04.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/co01.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/co01.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/cover.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/cover.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/css/epub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/css/epub.css -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/css/synth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/css/synth.css -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/fonts/FreeSansBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/fonts/FreeSansBold.otf -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/fonts/FreeSerif.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/fonts/FreeSerif.otf -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/fonts/UbuntuMono-B.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/fonts/UbuntuMono-B.ttf -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/fonts/UbuntuMono-BI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/fonts/UbuntuMono-BI.ttf -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/fonts/UbuntuMono-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/fonts/UbuntuMono-R.ttf -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/fonts/UbuntuMono-RI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/fonts/UbuntuMono-RI.ttf -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/images/spi_global_ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/images/spi_global_ad.png -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/images/web/epub3_0401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/images/web/epub3_0401.png -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/index.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/lexicon/en.pls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/lexicon/en.pls -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/lexicon/fr.pls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/lexicon/fr.pls -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/package.opf -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/pr01.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/pr01.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/pr01s02.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/pr01s02.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/pr01s03.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/pr01s03.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/pr01s04.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/pr01s04.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/pr01s05.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/pr01s05.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/EPUB/spi-ad.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/EPUB/spi-ad.xhtml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/accessible_epub_3/META-INF/container.xml -------------------------------------------------------------------------------- /epub_content/accessible_epub_3/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /epub_content/alice3/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/.project -------------------------------------------------------------------------------- /epub_content/alice3/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/META-INF/container.xml -------------------------------------------------------------------------------- /epub_content/alice3/chapter01.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/chapter01.xhtml -------------------------------------------------------------------------------- /epub_content/alice3/chapter02.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/chapter02.xhtml -------------------------------------------------------------------------------- /epub_content/alice3/chapter03.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/chapter03.xhtml -------------------------------------------------------------------------------- /epub_content/alice3/chapter04.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/chapter04.xhtml -------------------------------------------------------------------------------- /epub_content/alice3/chapter05.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/chapter05.xhtml -------------------------------------------------------------------------------- /epub_content/alice3/chapter06.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/chapter06.xhtml -------------------------------------------------------------------------------- /epub_content/alice3/chapter07.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/chapter07.xhtml -------------------------------------------------------------------------------- /epub_content/alice3/chapter08.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/chapter08.xhtml -------------------------------------------------------------------------------- /epub_content/alice3/chapter09.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/chapter09.xhtml -------------------------------------------------------------------------------- /epub_content/alice3/chapter10.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/chapter10.xhtml -------------------------------------------------------------------------------- /epub_content/alice3/chapter11.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/chapter11.xhtml -------------------------------------------------------------------------------- /epub_content/alice3/chapter12.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/chapter12.xhtml -------------------------------------------------------------------------------- /epub_content/alice3/content.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/content.opf -------------------------------------------------------------------------------- /epub_content/alice3/fonts/MinionPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/fonts/MinionPro-It.otf -------------------------------------------------------------------------------- /epub_content/alice3/fonts/MinionPro.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/fonts/MinionPro.otf -------------------------------------------------------------------------------- /epub_content/alice3/images/alice01a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice01a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice02a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice02a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice03a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice03a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice04a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice04a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice05a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice05a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice06a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice06a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice07a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice07a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice08a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice08a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice09a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice09a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice10a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice10a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice11a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice11a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice12a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice12a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice13a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice13a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice14a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice14a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice15a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice15a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice16a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice16a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice17a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice17a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice18a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice18a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice19a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice19a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice20a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice20a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice21a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice21a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice22a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice22a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice23a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice23a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice24a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice24a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice25a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice25a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice26a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice26a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice27a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice27a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice28a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice28a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice29a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice29a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice30a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice30a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice31a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice31a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice32a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice32a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice33a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice33a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice34a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice34a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice35a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice35a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice36a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice36a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice37a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice37a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice38a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice38a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice39a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice39a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice40a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice40a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice41a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice41a.gif -------------------------------------------------------------------------------- /epub_content/alice3/images/alice42a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/images/alice42a.gif -------------------------------------------------------------------------------- /epub_content/alice3/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /epub_content/alice3/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/nav.xhtml -------------------------------------------------------------------------------- /epub_content/alice3/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/style.css -------------------------------------------------------------------------------- /epub_content/alice3/titlepage.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/alice3/titlepage.xhtml -------------------------------------------------------------------------------- /epub_content/cyclones/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/.project -------------------------------------------------------------------------------- /epub_content/cyclones/Cyclone-Cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/Cyclone-Cover.png -------------------------------------------------------------------------------- /epub_content/cyclones/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/META-INF/container.xml -------------------------------------------------------------------------------- /epub_content/cyclones/Thumbnails/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/Thumbnails/thumbnail.png -------------------------------------------------------------------------------- /epub_content/cyclones/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/article.css -------------------------------------------------------------------------------- /epub_content/cyclones/content.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/content.opf -------------------------------------------------------------------------------- /epub_content/cyclones/copyright.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/copyright.xhtml -------------------------------------------------------------------------------- /epub_content/cyclones/extratropical_cyclone/800px-Snowcsi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/extratropical_cyclone/800px-Snowcsi.gif -------------------------------------------------------------------------------- /epub_content/cyclones/extratropical_cyclone/Jetstreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/extratropical_cyclone/Jetstreak.gif -------------------------------------------------------------------------------- /epub_content/cyclones/extratropical_cyclone/UK-Cyclone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/extratropical_cyclone/UK-Cyclone.svg -------------------------------------------------------------------------------- /epub_content/cyclones/extratropical_cyclone/Zonalflow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/extratropical_cyclone/Zonalflow.gif -------------------------------------------------------------------------------- /epub_content/cyclones/extratropical_cyclone/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/extratropical_cyclone/index.xhtml -------------------------------------------------------------------------------- /epub_content/cyclones/gnu_license.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/gnu_license.xhtml -------------------------------------------------------------------------------- /epub_content/cyclones/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /epub_content/cyclones/subtropical_cyclone/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/subtropical_cyclone/index.xhtml -------------------------------------------------------------------------------- /epub_content/cyclones/titlepage.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/titlepage.xhtml -------------------------------------------------------------------------------- /epub_content/cyclones/toc.ncx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/toc.ncx -------------------------------------------------------------------------------- /epub_content/cyclones/tropical_cyclone/Cyclone_Deaths.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/tropical_cyclone/Cyclone_Deaths.svg -------------------------------------------------------------------------------- /epub_content/cyclones/tropical_cyclone/Cyclone_Monica.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/tropical_cyclone/Cyclone_Monica.gif -------------------------------------------------------------------------------- /epub_content/cyclones/tropical_cyclone/Typhoonsizes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/tropical_cyclone/Typhoonsizes.jpg -------------------------------------------------------------------------------- /epub_content/cyclones/tropical_cyclone/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/tropical_cyclone/index.xhtml -------------------------------------------------------------------------------- /epub_content/cyclones/webarticle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/cyclones/webarticle.css -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/META-INF/container.xml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/META-INF/metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/META-INF/metadata.xml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/about.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/about.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/cover.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/cover.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/css/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/css/about.css -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/css/feedbooks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/css/feedbooks.css -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/css/footnotes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/css/footnotes.css -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/css/main.css -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/css/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/css/page.css -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/css/title.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/css/title.css -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/fb.ncx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/fb.ncx -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/fb.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/fb.opf -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/feedbooks.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/feedbooks.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/images/cover.png -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/images/logo-feedbooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/images/logo-feedbooks.png -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main0.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main0.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main1.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main1.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main10.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main10.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main11.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main11.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main12.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main12.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main13.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main13.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main14.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main14.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main15.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main15.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main16.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main16.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main17.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main17.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main18.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main18.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main19.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main19.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main2.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main2.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main20.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main20.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main21.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main21.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main22.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main22.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main23.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main23.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main24.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main24.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main25.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main25.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main26.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main26.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main27.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main27.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main28.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main28.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main29.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main29.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main3.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main3.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main30.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main30.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main4.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main4.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main5.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main5.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main6.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main6.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main7.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main7.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main8.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main8.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/main9.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/main9.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/OPS/title.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/emerald-city-oz/OPS/title.xhtml -------------------------------------------------------------------------------- /epub_content/emerald-city-oz/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /epub_content/epubReadingSystem.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem.epub -------------------------------------------------------------------------------- /epub_content/epubReadingSystem/EPUB/img/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem/EPUB/img/cover.png -------------------------------------------------------------------------------- /epub_content/epubReadingSystem/EPUB/img/cover.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem/EPUB/img/cover.psd -------------------------------------------------------------------------------- /epub_content/epubReadingSystem/EPUB/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem/EPUB/index.xhtml -------------------------------------------------------------------------------- /epub_content/epubReadingSystem/EPUB/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem/EPUB/nav.xhtml -------------------------------------------------------------------------------- /epub_content/epubReadingSystem/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem/EPUB/package.opf -------------------------------------------------------------------------------- /epub_content/epubReadingSystem/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem/META-INF/container.xml -------------------------------------------------------------------------------- /epub_content/epubReadingSystem/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /epub_content/epubReadingSystem_EX.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem_EX.epub -------------------------------------------------------------------------------- /epub_content/epubReadingSystem_EX/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem_EX/META-INF/container.xml -------------------------------------------------------------------------------- /epub_content/epubReadingSystem_EX/Readium_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem_EX/Readium_logo.png -------------------------------------------------------------------------------- /epub_content/epubReadingSystem_EX/iframe/iframe.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem_EX/iframe/iframe.xhtml -------------------------------------------------------------------------------- /epub_content/epubReadingSystem_EX/img/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem_EX/img/cover.png -------------------------------------------------------------------------------- /epub_content/epubReadingSystem_EX/img/cover.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem_EX/img/cover.psd -------------------------------------------------------------------------------- /epub_content/epubReadingSystem_EX/index.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem_EX/index.xhtml -------------------------------------------------------------------------------- /epub_content/epubReadingSystem_EX/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /epub_content/epubReadingSystem_EX/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem_EX/nav.xhtml -------------------------------------------------------------------------------- /epub_content/epubReadingSystem_EX/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epubReadingSystem_EX/package.opf -------------------------------------------------------------------------------- /epub_content/epub_library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epub_library.json -------------------------------------------------------------------------------- /epub_content/epub_library.opds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epub_library.opds -------------------------------------------------------------------------------- /epub_content/epub_tests_a11y.opds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epub_tests_a11y.opds -------------------------------------------------------------------------------- /epub_content/epub_tests_a11y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epub_tests_a11y.png -------------------------------------------------------------------------------- /epub_content/epub_testsuite.opds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epub_testsuite.opds -------------------------------------------------------------------------------- /epub_content/epub_testsuite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epub_testsuite.png -------------------------------------------------------------------------------- /epub_content/epub_threejs_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/epub_threejs_logo.jpg -------------------------------------------------------------------------------- /epub_content/idpf_samples.opds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/idpf_samples.opds -------------------------------------------------------------------------------- /epub_content/idpf_samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/idpf_samples.png -------------------------------------------------------------------------------- /epub_content/internal_link.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/internal_link.epub -------------------------------------------------------------------------------- /epub_content/internal_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/internal_link.png -------------------------------------------------------------------------------- /epub_content/moby_dick/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/META-INF/container.xml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_001.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_002.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_002.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_003.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_003.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_004.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_004.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_005.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_005.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_006.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_006.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_007.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_007.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_008.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_008.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_009.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_009.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_010.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_010.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_011.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_011.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_012.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_012.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_013.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_013.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_014.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_014.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_015.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_015.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_016.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_016.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_017.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_017.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_018.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_018.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_019.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_019.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_020.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_020.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_021.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_021.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_022.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_022.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_023.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_023.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_024.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_024.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_025.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_025.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_026.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_026.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_027.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_027.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_028.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_028.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_029.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_029.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_030.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_030.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_031.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_031.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_032.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_032.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_033.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_033.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_034.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_034.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_035.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_035.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_036.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_036.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_037.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_037.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_038.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_038.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_039.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_039.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_040.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_040.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_041.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_041.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_042.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_042.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_043.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_043.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_044.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_044.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_045.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_045.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_046.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_046.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_047.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_047.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_048.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_048.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_049.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_049.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_050.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_050.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_051.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_051.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_052.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_052.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_053.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_053.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_054.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_054.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_055.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_055.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_056.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_056.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_057.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_057.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_058.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_058.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_059.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_059.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_060.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_060.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_061.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_061.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_062.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_062.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_063.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_063.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_064.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_064.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_065.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_065.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_066.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_066.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_067.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_067.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_068.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_068.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_069.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_069.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_070.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_070.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_071.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_071.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_072.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_072.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_073.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_073.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_074.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_074.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_075.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_075.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_076.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_076.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_077.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_077.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_078.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_078.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_079.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_079.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_080.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_080.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_081.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_081.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_082.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_082.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_083.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_083.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_084.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_084.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_085.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_085.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_086.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_086.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_087.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_087.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_088.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_088.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_089.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_089.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_090.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_090.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_091.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_091.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_092.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_092.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_093.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_093.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_094.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_094.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_095.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_095.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_096.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_096.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_097.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_097.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_098.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_098.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_099.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_099.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_100.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_100.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_101.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_101.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_102.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_102.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_103.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_103.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_104.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_104.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_105.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_105.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_106.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_106.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_107.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_107.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_108.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_108.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_109.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_109.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_110.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_110.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_111.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_111.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_112.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_112.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_113.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_113.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_114.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_114.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_115.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_115.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_116.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_116.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_117.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_117.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_118.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_118.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_119.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_119.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_120.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_120.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_121.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_121.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_122.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_122.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_123.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_123.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_124.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_124.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_125.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_125.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_126.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_126.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_127.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_127.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_128.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_128.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_129.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_129.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_130.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_130.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_131.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_131.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_132.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_132.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_133.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_133.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_134.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_134.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_135.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_135.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/chapter_136.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/chapter_136.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/copyright.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/copyright.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/cover.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/cover.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/css/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/css/stylesheet.css -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/epigraph_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/epigraph_001.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/fonts/STIXGeneral.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/fonts/STIXGeneral.otf -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/fonts/STIXGeneralBol.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/fonts/STIXGeneralBol.otf -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/fonts/STIXGeneralBolIta.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/fonts/STIXGeneralBolIta.otf -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/fonts/STIXGeneralItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/fonts/STIXGeneralItalic.otf -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/images/9780316000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/images/9780316000000.jpg -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/images/Moby-Dick_FE_title_page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/images/Moby-Dick_FE_title_page.jpg -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/introduction_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/introduction_001.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/package.opf -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/preface_001.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/preface_001.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/titlepage.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/titlepage.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/toc-short.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/toc-short.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/OPS/toc.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/moby_dick/OPS/toc.xhtml -------------------------------------------------------------------------------- /epub_content/moby_dick/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /epub_content/page-blanche/EPUB/Content/cover.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/page-blanche/EPUB/Content/cover.xhtml -------------------------------------------------------------------------------- /epub_content/page-blanche/EPUB/Image/PageBlanche_Page_001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/page-blanche/EPUB/Image/PageBlanche_Page_001.jpg -------------------------------------------------------------------------------- /epub_content/page-blanche/EPUB/Image/PageBlanche_Page_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/page-blanche/EPUB/Image/PageBlanche_Page_002.jpg -------------------------------------------------------------------------------- /epub_content/page-blanche/EPUB/Image/PageBlanche_Page_003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/page-blanche/EPUB/Image/PageBlanche_Page_003.jpg -------------------------------------------------------------------------------- /epub_content/page-blanche/EPUB/Image/PageBlanche_Page_004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/page-blanche/EPUB/Image/PageBlanche_Page_004.jpg -------------------------------------------------------------------------------- /epub_content/page-blanche/EPUB/Image/PageBlanche_Page_005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/page-blanche/EPUB/Image/PageBlanche_Page_005.jpg -------------------------------------------------------------------------------- /epub_content/page-blanche/EPUB/Image/PageBlanche_Page_006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/page-blanche/EPUB/Image/PageBlanche_Page_006.jpg -------------------------------------------------------------------------------- /epub_content/page-blanche/EPUB/Image/PageBlanche_Page_007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/page-blanche/EPUB/Image/PageBlanche_Page_007.jpg -------------------------------------------------------------------------------- /epub_content/page-blanche/EPUB/Image/PageBlanche_Page_008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/page-blanche/EPUB/Image/PageBlanche_Page_008.jpg -------------------------------------------------------------------------------- /epub_content/page-blanche/EPUB/Image/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/page-blanche/EPUB/Image/cover.jpg -------------------------------------------------------------------------------- /epub_content/page-blanche/EPUB/Navigation/nav.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/page-blanche/EPUB/Navigation/nav.xhtml -------------------------------------------------------------------------------- /epub_content/page-blanche/EPUB/Navigation/toc.ncx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/page-blanche/EPUB/Navigation/toc.ncx -------------------------------------------------------------------------------- /epub_content/page-blanche/EPUB/Style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/page-blanche/EPUB/Style/style.css -------------------------------------------------------------------------------- /epub_content/page-blanche/EPUB/package.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/page-blanche/EPUB/package.opf -------------------------------------------------------------------------------- /epub_content/page-blanche/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/page-blanche/META-INF/container.xml -------------------------------------------------------------------------------- /epub_content/page-blanche/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /epub_content/producing-oss/META-INF/container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/META-INF/container.xml -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/apa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/apa.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/apb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/apb.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/apc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/apc.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/apd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/apd.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ape.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/bk01-toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/bk01-toc.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch01.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch01s02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch01s02.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch02.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch02s02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch02s02.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch02s03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch02s03.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch02s04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch02s04.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch03.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch03s02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch03s02.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch03s03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch03s03.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch03s04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch03s04.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch03s05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch03s05.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch03s06.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch03s06.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch03s07.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch03s07.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch03s08.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch03s08.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch04.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch04s02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch04s02.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch04s03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch04s03.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch05.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch05s02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch05s02.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch05s03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch05s03.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch05s04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch05s04.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch05s05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch05s05.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch05s06.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch05s06.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch05s07.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch05s07.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch05s08.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch05s08.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch06.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch06.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch06s02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch06s02.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch06s03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch06s03.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch06s04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch06s04.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch06s05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch06s05.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch06s06.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch06s06.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch07.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch07.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch07s02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch07s02.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch07s03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch07s03.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch07s04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch07s04.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch07s05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch07s05.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch07s06.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch07s06.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch07s07.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch07s07.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch08.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch08.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch08s02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch08s02.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch08s03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch08s03.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch08s04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch08s04.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch08s05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch08s05.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch08s06.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch08s06.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch09.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch09.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch09s02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch09s02.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch09s03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch09s03.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch09s04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch09s04.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch09s05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch09s05.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch09s06.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch09s06.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch09s07.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch09s07.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/ch09s08.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/ch09s08.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/content.opf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/content.opf -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/index.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/pr01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/pr01.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/pr01s02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/pr01s02.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/pr01s03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/pr01s03.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/pr01s04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/pr01s04.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/pr01s05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/pr01s05.html -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/producing-oss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/producing-oss.jpg -------------------------------------------------------------------------------- /epub_content/producing-oss/OEBPS/toc.ncx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/OEBPS/toc.ncx -------------------------------------------------------------------------------- /epub_content/producing-oss/mimetype: -------------------------------------------------------------------------------- 1 | application/epub+zip -------------------------------------------------------------------------------- /epub_content/producing-oss/producing-oss.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/producing-oss.epub -------------------------------------------------------------------------------- /epub_content/producing-oss/producingoss.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/epub_content/producing-oss/producingoss.epub -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/firebase.json -------------------------------------------------------------------------------- /firebase_from_divshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/firebase_from_divshot.json -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/package.json -------------------------------------------------------------------------------- /package/package_base.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/package/package_base.cson -------------------------------------------------------------------------------- /package/package_scripts_base.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/package/package_scripts_base.cson -------------------------------------------------------------------------------- /package/package_scripts_build.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/package/package_scripts_build.cson -------------------------------------------------------------------------------- /package/package_scripts_dist_base.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/package/package_scripts_dist_base.cson -------------------------------------------------------------------------------- /package/package_scripts_dist_chromeApp.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/package/package_scripts_dist_chromeApp.cson -------------------------------------------------------------------------------- /package/package_scripts_dist_cloudReader.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/package/package_scripts_dist_cloudReader.cson -------------------------------------------------------------------------------- /package/package_scripts_dist_cloudReaderLite.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/package/package_scripts_dist_cloudReaderLite.cson -------------------------------------------------------------------------------- /package/package_scripts_epubs.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/package/package_scripts_epubs.cson -------------------------------------------------------------------------------- /package/package_scripts_http.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/package/package_scripts_http.cson -------------------------------------------------------------------------------- /package/package_scripts_test_base.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/package/package_scripts_test_base.cson -------------------------------------------------------------------------------- /package/package_scripts_test_sauce.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/package/package_scripts_test_sauce.cson -------------------------------------------------------------------------------- /package/package_scripts_travis.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/package/package_scripts_travis.cson -------------------------------------------------------------------------------- /src/chrome-app/analytics/ExtensionAnalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/chrome-app/analytics/ExtensionAnalytics.js -------------------------------------------------------------------------------- /src/chrome-app/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/chrome-app/background.js -------------------------------------------------------------------------------- /src/chrome-app/epubReadingSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/chrome-app/epubReadingSystem.js -------------------------------------------------------------------------------- /src/chrome-app/i18n/Strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/chrome-app/i18n/Strings.js -------------------------------------------------------------------------------- /src/chrome-app/icons/devBuild/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/chrome-app/icons/devBuild/large.png -------------------------------------------------------------------------------- /src/chrome-app/icons/devBuild/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/chrome-app/icons/devBuild/medium.png -------------------------------------------------------------------------------- /src/chrome-app/icons/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/chrome-app/icons/large.png -------------------------------------------------------------------------------- /src/chrome-app/icons/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/chrome-app/icons/medium.png -------------------------------------------------------------------------------- /src/chrome-app/icons/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/chrome-app/icons/small.png -------------------------------------------------------------------------------- /src/chrome-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/chrome-app/index.html -------------------------------------------------------------------------------- /src/chrome-app/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/chrome-app/manifest.json -------------------------------------------------------------------------------- /src/chrome-app/requirejs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/chrome-app/requirejs-config.js -------------------------------------------------------------------------------- /src/chrome-app/storage/ChromeSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/chrome-app/storage/ChromeSettings.js -------------------------------------------------------------------------------- /src/chrome-app/storage/FileSystemStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/chrome-app/storage/FileSystemStorage.js -------------------------------------------------------------------------------- /src/cloud-reader-lite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/cloud-reader-lite/index.html -------------------------------------------------------------------------------- /src/cloud-reader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/cloud-reader/index.html -------------------------------------------------------------------------------- /src/css/annotations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/css/annotations.css -------------------------------------------------------------------------------- /src/css/library.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/css/library.css -------------------------------------------------------------------------------- /src/css/readium_js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/css/readium_js.css -------------------------------------------------------------------------------- /src/css/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/css/settings.css -------------------------------------------------------------------------------- /src/css/sourcesanspro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/css/sourcesanspro.css -------------------------------------------------------------------------------- /src/css/viewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/css/viewer.css -------------------------------------------------------------------------------- /src/css/viewer_audio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/css/viewer_audio.css -------------------------------------------------------------------------------- /src/fonts/Noto-Serif/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/Noto-Serif/LICENSE.txt -------------------------------------------------------------------------------- /src/fonts/Noto-Serif/Noto-Serif-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/Noto-Serif/Noto-Serif-700.woff -------------------------------------------------------------------------------- /src/fonts/Noto-Serif/Noto-Serif-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/Noto-Serif/Noto-Serif-700italic.woff -------------------------------------------------------------------------------- /src/fonts/Noto-Serif/Noto-Serif-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/Noto-Serif/Noto-Serif-italic.woff -------------------------------------------------------------------------------- /src/fonts/Noto-Serif/Noto-Serif-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/Noto-Serif/Noto-Serif-regular.woff -------------------------------------------------------------------------------- /src/fonts/Noto-Serif/Noto-Serif.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/Noto-Serif/Noto-Serif.css -------------------------------------------------------------------------------- /src/fonts/Open-Sans/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/Open-Sans/LICENSE.txt -------------------------------------------------------------------------------- /src/fonts/Open-Sans/Open-Sans-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/Open-Sans/Open-Sans-700.woff -------------------------------------------------------------------------------- /src/fonts/Open-Sans/Open-Sans-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/Open-Sans/Open-Sans-700italic.woff -------------------------------------------------------------------------------- /src/fonts/Open-Sans/Open-Sans-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/Open-Sans/Open-Sans-italic.woff -------------------------------------------------------------------------------- /src/fonts/Open-Sans/Open-Sans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/Open-Sans/Open-Sans-regular.woff -------------------------------------------------------------------------------- /src/fonts/Open-Sans/Open-Sans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/Open-Sans/Open-Sans.css -------------------------------------------------------------------------------- /src/fonts/OpenDyslexic/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/OpenDyslexic/License.txt -------------------------------------------------------------------------------- /src/fonts/OpenDyslexic/OpenDyslexic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/OpenDyslexic/OpenDyslexic-Bold.woff -------------------------------------------------------------------------------- /src/fonts/OpenDyslexic/OpenDyslexic-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/OpenDyslexic/OpenDyslexic-BoldItalic.woff -------------------------------------------------------------------------------- /src/fonts/OpenDyslexic/OpenDyslexic-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/OpenDyslexic/OpenDyslexic-Italic.woff -------------------------------------------------------------------------------- /src/fonts/OpenDyslexic/OpenDyslexic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/OpenDyslexic/OpenDyslexic-Regular.woff -------------------------------------------------------------------------------- /src/fonts/OpenDyslexic/OpenDyslexic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/OpenDyslexic/OpenDyslexic.css -------------------------------------------------------------------------------- /src/fonts/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/fonts/fonts.js -------------------------------------------------------------------------------- /src/i18n/Strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/i18n/Strings.js -------------------------------------------------------------------------------- /src/i18n/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/i18n/_locales/de/messages.json -------------------------------------------------------------------------------- /src/i18n/_locales/en_US/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/i18n/_locales/en_US/messages.json -------------------------------------------------------------------------------- /src/i18n/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/i18n/_locales/es/messages.json -------------------------------------------------------------------------------- /src/i18n/_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/i18n/_locales/fr/messages.json -------------------------------------------------------------------------------- /src/i18n/_locales/id/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/i18n/_locales/id/messages.json -------------------------------------------------------------------------------- /src/i18n/_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/i18n/_locales/it/messages.json -------------------------------------------------------------------------------- /src/i18n/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/i18n/_locales/ja/messages.json -------------------------------------------------------------------------------- /src/i18n/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/i18n/_locales/ko/messages.json -------------------------------------------------------------------------------- /src/i18n/_locales/pt_BR/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/i18n/_locales/pt_BR/messages.json -------------------------------------------------------------------------------- /src/i18n/_locales/zh_CN/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/i18n/_locales/zh_CN/messages.json -------------------------------------------------------------------------------- /src/i18n/_locales/zh_TW/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/i18n/_locales/zh_TW/messages.json -------------------------------------------------------------------------------- /src/images/about_readium_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/about_readium_logo.png -------------------------------------------------------------------------------- /src/images/covers/cover1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/covers/cover1.jpg -------------------------------------------------------------------------------- /src/images/covers/cover2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/covers/cover2.jpg -------------------------------------------------------------------------------- /src/images/covers/cover3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/covers/cover3.jpg -------------------------------------------------------------------------------- /src/images/covers/cover4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/covers/cover4.jpg -------------------------------------------------------------------------------- /src/images/covers/cover5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/covers/cover5.jpg -------------------------------------------------------------------------------- /src/images/covers/cover6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/covers/cover6.jpg -------------------------------------------------------------------------------- /src/images/covers/cover7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/covers/cover7.jpg -------------------------------------------------------------------------------- /src/images/covers/cover8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/covers/cover8.jpg -------------------------------------------------------------------------------- /src/images/epub-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/epub-touch-icon.png -------------------------------------------------------------------------------- /src/images/epub_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/epub_favicon.ico -------------------------------------------------------------------------------- /src/images/glyphicons_115_text_smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/glyphicons_115_text_smaller.png -------------------------------------------------------------------------------- /src/images/glyphicons_116_text_bigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/glyphicons_116_text_bigger.png -------------------------------------------------------------------------------- /src/images/ico_doublepage_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/ico_doublepage_up.png -------------------------------------------------------------------------------- /src/images/ico_singlepage_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/ico_singlepage_up.png -------------------------------------------------------------------------------- /src/images/library_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/library_arrow.png -------------------------------------------------------------------------------- /src/images/margin1_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/margin1_off.png -------------------------------------------------------------------------------- /src/images/margin4_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/margin4_off.png -------------------------------------------------------------------------------- /src/images/pagination.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/pagination.svg -------------------------------------------------------------------------------- /src/images/pagination1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/pagination1.svg -------------------------------------------------------------------------------- /src/images/partner_logos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/partner_logos.png -------------------------------------------------------------------------------- /src/images/readium-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/readium-touch-icon.png -------------------------------------------------------------------------------- /src/images/readium_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/readium_favicon.png -------------------------------------------------------------------------------- /src/images/readium_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/images/readium_logo.png -------------------------------------------------------------------------------- /src/js/Dialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/Dialogs.js -------------------------------------------------------------------------------- /src/js/EpubLibrary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/EpubLibrary.js -------------------------------------------------------------------------------- /src/js/EpubLibraryManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/EpubLibraryManager.js -------------------------------------------------------------------------------- /src/js/EpubLibraryOPDS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/EpubLibraryOPDS.js -------------------------------------------------------------------------------- /src/js/EpubReader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/EpubReader.js -------------------------------------------------------------------------------- /src/js/EpubReaderBackgroundAudioTrack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/EpubReaderBackgroundAudioTrack.js -------------------------------------------------------------------------------- /src/js/EpubReaderMediaOverlays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/EpubReaderMediaOverlays.js -------------------------------------------------------------------------------- /src/js/Keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/Keyboard.js -------------------------------------------------------------------------------- /src/js/ModuleConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/ModuleConfig.js -------------------------------------------------------------------------------- /src/js/PackageParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/PackageParser.js -------------------------------------------------------------------------------- /src/js/ReaderSettingsDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/ReaderSettingsDialog.js -------------------------------------------------------------------------------- /src/js/ReaderSettingsDialog_Keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/ReaderSettingsDialog_Keyboard.js -------------------------------------------------------------------------------- /src/js/ReadiumViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/ReadiumViewer.js -------------------------------------------------------------------------------- /src/js/ReadiumViewerLite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/ReadiumViewerLite.js -------------------------------------------------------------------------------- /src/js/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/Spinner.js -------------------------------------------------------------------------------- /src/js/analytics/Analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/analytics/Analytics.js -------------------------------------------------------------------------------- /src/js/gestures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/gestures.js -------------------------------------------------------------------------------- /src/js/migration/MigrationManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/migration/MigrationManager.js -------------------------------------------------------------------------------- /src/js/storage/RemoteStorageManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/storage/RemoteStorageManager.js -------------------------------------------------------------------------------- /src/js/storage/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/storage/Settings.js -------------------------------------------------------------------------------- /src/js/storage/StaticStorageManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/storage/StaticStorageManager.js -------------------------------------------------------------------------------- /src/js/storage/UnpackedDirLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/storage/UnpackedDirLoader.js -------------------------------------------------------------------------------- /src/js/storage/ZipFileLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/storage/ZipFileLoader.js -------------------------------------------------------------------------------- /src/js/versioning/ReadiumVersioning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/versioning/ReadiumVersioning.js -------------------------------------------------------------------------------- /src/js/workers/ContentTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/workers/ContentTransformer.js -------------------------------------------------------------------------------- /src/js/workers/EpubLibraryWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/workers/EpubLibraryWriter.js -------------------------------------------------------------------------------- /src/js/workers/Messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/workers/Messages.js -------------------------------------------------------------------------------- /src/js/workers/WorkerProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/js/workers/WorkerProxy.js -------------------------------------------------------------------------------- /src/logos/mini-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/logos/mini-logo.png -------------------------------------------------------------------------------- /src/logos/readium (no glow).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/logos/readium (no glow).svg -------------------------------------------------------------------------------- /src/logos/readium rotated (no glow).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/logos/readium rotated (no glow).svg -------------------------------------------------------------------------------- /src/logos/readium-rotated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/logos/readium-rotated.svg -------------------------------------------------------------------------------- /src/logos/readium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/logos/readium.svg -------------------------------------------------------------------------------- /src/templates/about-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/templates/about-dialog.html -------------------------------------------------------------------------------- /src/templates/add-epub-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/templates/add-epub-dialog.html -------------------------------------------------------------------------------- /src/templates/details-body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/templates/details-body.html -------------------------------------------------------------------------------- /src/templates/details-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/templates/details-dialog.html -------------------------------------------------------------------------------- /src/templates/empty-library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readium/readium-js-viewer/HEAD/src/templates/empty-library.html -------------------------------------------------------------------------------- /src/templates/library-body.html: -------------------------------------------------------------------------------- 1 |