├── .dockerignore ├── .env.template ├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ ├── config.yml │ ├── map_update.md │ ├── new_feature.md │ ├── new_map.md │ ├── question.md │ └── scoring_update.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── cd.yml │ ├── ci.yml │ ├── issue.yml │ └── pr.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── CODEOWNERS ├── LICENSE.md ├── README.md ├── data ├── journals │ ├── data.jsonl │ └── index.json └── maps │ ├── biology │ ├── _init_.json │ └── covid_19 │ │ ├── _init_.json │ │ └── what_is_the_origin_of_sars_cov_2.json │ ├── education │ ├── _init_.json │ └── sexual_education │ │ ├── _init_.json │ │ └── sexual_education_effects_on_children.json │ ├── environment │ ├── _init_.json │ └── gas_cars_vs_electric_cars_for_emissions.json │ ├── health │ ├── _init_.json │ ├── food_and_drinks │ │ ├── _init_.json │ │ ├── do_sugar_substitutes_cause_cancer.json │ │ └── food │ │ │ ├── _init_.json │ │ │ ├── are_gmos_harmful_to_health.json │ │ │ ├── meat │ │ │ ├── _init_.json │ │ │ ├── does_processed_meat_cause_cancer.json │ │ │ └── does_red_meat_cause_cancer.json │ │ │ └── pesticides │ │ │ ├── _init_.json │ │ │ └── glyphosate │ │ │ ├── _init_.json │ │ │ ├── is_glyphosate_harmful_to_consumer_health.json │ │ │ └── is_glyphosate_harmful_to_farmworker_health.json │ └── smoking_and_vaping │ │ ├── _init_.json │ │ └── smoking_vs_vaping_for_health.json │ ├── justice │ ├── _init_.json │ └── does_video_surveillance_reduce_crime.json │ ├── medicine │ ├── _init_.json │ ├── birth_control │ │ ├── _init_.json │ │ └── birth_control_pill │ │ │ ├── _init_.json │ │ │ └── do_birth_control_pills_cause_weight_gain.json │ ├── covid_19 │ │ ├── _init_.json │ │ ├── are_masks_effective_against_covid_19.json │ │ ├── covid_19_vaccines │ │ │ ├── _init_.json │ │ │ ├── do_covid_19_vaccines_prevent_symptoms_or_death.json │ │ │ └── do_covid_19_vaccines_reduce_transmission.json │ │ ├── is_hydroxychloroquine_effective_against_covid_19.json │ │ └── is_ivermectin_effective_against_covid_19.json │ └── vaccines │ │ ├── _init_.json │ │ └── do_vaccines_cause_autism.json │ ├── pseudoscience │ ├── _init_.json │ └── does_homeopathy_work.json │ ├── psychology │ ├── _init_.json │ ├── do_video_games_cause_violence.json │ ├── gender │ │ ├── _init_.json │ │ └── what_proportion_of_trans_people_detransition.json │ └── love_and_sexuality │ │ ├── _init_.json │ │ └── is_sexual_orientation_socially_influenced.json │ └── sport │ ├── _init_.json │ ├── bodybuilding │ ├── _init_.json │ └── does_weight_training_prevent_height_growth.json │ ├── does_stretching_prevent_muscle_soreness.json │ └── does_warming_up_prevent_injuries.json ├── doc ├── README.md ├── contribute │ ├── README.md │ ├── maps.md │ └── papers.md ├── scoring │ ├── README.md │ ├── maps.md │ └── papers.md └── why.md ├── docker-compose.yml ├── dockerfile ├── eslint.config.js ├── package.json ├── postcss.config.cjs ├── resources └── misc │ ├── add.png │ ├── bar.png │ ├── download.png │ ├── edit.png │ ├── edit_paper.png │ ├── home.png │ ├── journal.png │ ├── map.png │ ├── maps.png │ ├── new.png │ ├── paper.png │ ├── send.png │ ├── stats.png │ └── thumbnail.png ├── scripts ├── clean.js ├── discord.js ├── find_more.js ├── migration.js └── search.js ├── server.js ├── src ├── app.css ├── app.d.ts ├── app.html ├── fonts.css ├── hooks.server.ts ├── lib │ ├── colors.ts │ ├── display │ │ ├── buttons │ │ │ ├── default.svelte │ │ │ ├── edit.svelte │ │ │ └── info.svelte │ │ ├── details │ │ │ ├── cards.ts │ │ │ ├── info_bubble.svelte │ │ │ ├── journal.svelte │ │ │ ├── paper_bubble.svelte │ │ │ └── paper_content.svelte │ │ ├── edit │ │ │ ├── add.svelte │ │ │ ├── autocomplete.svelte │ │ │ ├── popup.svelte │ │ │ ├── search.svelte │ │ │ └── send.svelte │ │ ├── graph │ │ │ ├── background.ts │ │ │ ├── graph.svelte │ │ │ ├── points.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── loading.svelte │ │ ├── overview.svelte │ │ ├── overview.ts │ │ ├── title.svelte │ │ └── utils.ts │ ├── errors.ts │ ├── github │ │ └── issue.ts │ ├── home │ │ ├── background.svelte │ │ ├── popup.svelte │ │ └── search.svelte │ ├── list │ │ ├── background.svelte │ │ └── maps.svelte │ ├── scoring │ │ ├── map.ts │ │ └── paper.ts │ ├── server │ │ ├── data │ │ │ ├── csv.ts │ │ │ ├── fake.ts │ │ │ ├── journal.ts │ │ │ ├── map.ts │ │ │ ├── paper.ts │ │ │ └── validate.ts │ │ ├── display │ │ │ ├── images.ts │ │ │ ├── title.ts │ │ │ └── utils.ts │ │ ├── emojis │ │ │ ├── index.ts │ │ │ └── svgs │ │ │ │ ├── alembic.svg │ │ │ │ ├── angry-face.svg │ │ │ │ ├── automobile.svg │ │ │ │ ├── bacon.svg │ │ │ │ ├── balance-scale.svg │ │ │ │ ├── bar-chart.svg │ │ │ │ ├── bat.svg │ │ │ │ ├── black-nib.svg │ │ │ │ ├── bookmark-tabs.svg │ │ │ │ ├── books.svg │ │ │ │ ├── boomerang.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── busts-in-silhouette.svg │ │ │ │ ├── camera-with-flash.svg │ │ │ │ ├── candy.svg │ │ │ │ ├── card-index-dividers.svg │ │ │ │ ├── cigarette.svg │ │ │ │ ├── control-knobs.svg │ │ │ │ ├── crystal-ball.svg │ │ │ │ ├── cut-of-meat.svg │ │ │ │ ├── dashing-away.svg │ │ │ │ ├── dizzy-face.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dotted-line-face.svg │ │ │ │ ├── ear-of-corn.svg │ │ │ │ ├── eyes.svg │ │ │ │ ├── face-exhaling.svg │ │ │ │ ├── face-vomiting.svg │ │ │ │ ├── face-with-diagonal-mouth.svg │ │ │ │ ├── face-with-medical-mask.svg │ │ │ │ ├── face-with-monocle.svg │ │ │ │ ├── face-with-open-eyes-and-hand-over-mouth.svg │ │ │ │ ├── face-with-peeking-eye.svg │ │ │ │ ├── face-with-raised-eyebrow.svg │ │ │ │ ├── face-with-spiral-eyes.svg │ │ │ │ ├── face-with-thermometer.svg │ │ │ │ ├── family-adult-adult-child-child.svg │ │ │ │ ├── family-adult-child.svg │ │ │ │ ├── family.svg │ │ │ │ ├── farmer.svg │ │ │ │ ├── fearful-face.svg │ │ │ │ ├── fork-and-knife-with-plate.svg │ │ │ │ ├── frowning-face.svg │ │ │ │ ├── fuel-pump.svg │ │ │ │ ├── game-die.svg │ │ │ │ ├── globe-showing-europe-africa.svg │ │ │ │ ├── globe-with-meridians.svg │ │ │ │ ├── hamburger.svg │ │ │ │ ├── heavy-equals-sign.svg │ │ │ │ ├── high-voltage.svg │ │ │ │ ├── hourglass-not-done.svg │ │ │ │ ├── house.svg │ │ │ │ ├── hugging-face.svg │ │ │ │ ├── left-arrow-curving-right.svg │ │ │ │ ├── left-arrow.svg │ │ │ │ ├── link.svg │ │ │ │ ├── locked.svg │ │ │ │ ├── magnifying-glass-tilted-left.svg │ │ │ │ ├── meat-on-bone.svg │ │ │ │ ├── medical-symbol.svg │ │ │ │ ├── memo.svg │ │ │ │ ├── microbe.svg │ │ │ │ ├── microscope.svg │ │ │ │ ├── money-mouth-face.svg │ │ │ │ ├── mouse-face.svg │ │ │ │ ├── neutral-face.svg │ │ │ │ ├── open-book.svg │ │ │ │ ├── open-mailbox-with-lowered-flag.svg │ │ │ │ ├── page-with-curl.svg │ │ │ │ ├── pencil.svg │ │ │ │ ├── people-holding-hands.svg │ │ │ │ ├── person-cartwheeling.svg │ │ │ │ ├── person-gesturing-no.svg │ │ │ │ ├── person-gesturing-ok.svg │ │ │ │ ├── person-lifting-weights.svg │ │ │ │ ├── person-raising-hand.svg │ │ │ │ ├── person-running-facing-right.svg │ │ │ │ ├── person-shrugging.svg │ │ │ │ ├── person-standing.svg │ │ │ │ ├── petri-dish.svg │ │ │ │ ├── pile-of-poo.svg │ │ │ │ ├── pill.svg │ │ │ │ ├── pinching-hand.svg │ │ │ │ ├── pregnant-woman.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── relieved-face.svg │ │ │ │ ├── restroom.svg │ │ │ │ ├── revolving-hearts.svg │ │ │ │ ├── right-arrow-curving-left.svg │ │ │ │ ├── right-arrow.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── sake.svg │ │ │ │ ├── school.svg │ │ │ │ ├── sheaf-of-rice.svg │ │ │ │ ├── shuffle-tracks-button.svg │ │ │ │ ├── slightly-smiling-face.svg │ │ │ │ ├── smiling-face-with-halo.svg │ │ │ │ ├── smiling-face-with-hearts.svg │ │ │ │ ├── smiling-face-with-smiling-eyes.svg │ │ │ │ ├── smiling-face-with-sunglasses.svg │ │ │ │ ├── sparkling-heart.svg │ │ │ │ ├── star-struck.svg │ │ │ │ ├── syringe.svg │ │ │ │ ├── teacher.svg │ │ │ │ ├── teddy-bear.svg │ │ │ │ ├── test-tube.svg │ │ │ │ ├── thinking-face.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── tomato.svg │ │ │ │ ├── transgender-symbol.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── umbrella-with-rain-drops.svg │ │ │ │ ├── video-camera.svg │ │ │ │ ├── video-game.svg │ │ │ │ ├── wastebasket.svg │ │ │ │ ├── woozy-face.svg │ │ │ │ └── zipper-mouth-face.svg │ │ ├── fonts.ts │ │ ├── github │ │ │ ├── api.ts │ │ │ └── index.ts │ │ ├── search │ │ │ ├── api.ts │ │ │ └── paper.ts │ │ ├── templates │ │ │ ├── graph.svg.ejs │ │ │ ├── image.svg.ejs │ │ │ ├── overview.svg.ejs │ │ │ └── preview.svg.ejs │ │ └── utils.ts │ ├── statistics │ │ ├── bars.svelte │ │ ├── categories.svelte │ │ └── scatter.svelte │ ├── svgs │ │ ├── add.svg │ │ ├── arrow.svg │ │ ├── back.svg │ │ ├── cross.svg │ │ ├── csv.svg │ │ ├── download.svg │ │ ├── edit.svg │ │ ├── home.svg │ │ ├── link.svg │ │ ├── logo.svg │ │ ├── png.svg │ │ ├── random.svg │ │ ├── small-add.svg │ │ ├── small-remove.svg │ │ ├── submit.svg │ │ ├── svg.svg │ │ ├── title.svg │ │ ├── txt-copied.svg │ │ └── txt.svg │ ├── types │ │ ├── index.ts │ │ ├── journal.ts │ │ ├── map.ts │ │ └── paper.ts │ └── utils.ts └── routes │ ├── +error.svelte │ ├── +layout.svelte │ ├── +page.server.ts │ ├── +page.svelte │ ├── journal │ └── [id] │ │ ├── +server.ts │ │ ├── types.ts │ │ └── validate.ts │ ├── maps │ ├── +page.server.ts │ ├── +page.svelte │ ├── [map] │ │ ├── +page.server.ts │ │ ├── +page.svelte │ │ ├── [file] │ │ │ ├── +server.ts │ │ │ ├── types.ts │ │ │ └── validate.ts │ │ ├── edit │ │ │ ├── +server.ts │ │ │ ├── edit.ts │ │ │ ├── types.ts │ │ │ └── validate.ts │ │ ├── types.ts │ │ └── validate.ts │ └── random │ │ ├── +page.server.ts │ │ └── +page.svelte │ ├── request │ └── new │ │ ├── +server.ts │ │ └── validate.ts │ ├── search │ └── +server.ts │ └── statistics │ ├── +page.server.ts │ └── +page.svelte ├── static ├── favicon.ico ├── favicon.png ├── fonts │ ├── Roboto │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-BlackItalic.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-BoldCondensed.ttf │ │ ├── Roboto-BoldCondensedItalic.ttf │ │ ├── Roboto-BoldItalic.ttf │ │ ├── Roboto-Condensed.ttf │ │ ├── Roboto-CondensedItalic.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-LightItalic.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-MediumItalic.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Thin.ttf │ │ └── Roboto-ThinItalic.ttf │ └── Satoshi │ │ ├── Satoshi-Black.eot │ │ ├── Satoshi-Black.ttf │ │ ├── Satoshi-Black.woff │ │ ├── Satoshi-Black.woff2 │ │ ├── Satoshi-BlackItalic.eot │ │ ├── Satoshi-BlackItalic.ttf │ │ ├── Satoshi-BlackItalic.woff │ │ ├── Satoshi-BlackItalic.woff2 │ │ ├── Satoshi-Bold.eot │ │ ├── Satoshi-Bold.ttf │ │ ├── Satoshi-Bold.woff │ │ ├── Satoshi-Bold.woff2 │ │ ├── Satoshi-BoldItalic.eot │ │ ├── Satoshi-BoldItalic.ttf │ │ ├── Satoshi-BoldItalic.woff │ │ ├── Satoshi-BoldItalic.woff2 │ │ ├── Satoshi-Italic.eot │ │ ├── Satoshi-Italic.ttf │ │ ├── Satoshi-Italic.woff │ │ ├── Satoshi-Italic.woff2 │ │ ├── Satoshi-Light.eot │ │ ├── Satoshi-Light.ttf │ │ ├── Satoshi-Light.woff │ │ ├── Satoshi-Light.woff2 │ │ ├── Satoshi-LightItalic.eot │ │ ├── Satoshi-LightItalic.ttf │ │ ├── Satoshi-LightItalic.woff │ │ ├── Satoshi-LightItalic.woff2 │ │ ├── Satoshi-Medium.eot │ │ ├── Satoshi-Medium.ttf │ │ ├── Satoshi-Medium.woff │ │ ├── Satoshi-Medium.woff2 │ │ ├── Satoshi-MediumItalic.eot │ │ ├── Satoshi-MediumItalic.ttf │ │ ├── Satoshi-MediumItalic.woff │ │ ├── Satoshi-MediumItalic.woff2 │ │ ├── Satoshi-Regular.eot │ │ ├── Satoshi-Regular.ttf │ │ ├── Satoshi-Regular.woff │ │ ├── Satoshi-Regular.woff2 │ │ ├── Satoshi-Variable.eot │ │ ├── Satoshi-Variable.ttf │ │ ├── Satoshi-Variable.woff │ │ ├── Satoshi-Variable.woff2 │ │ ├── Satoshi-VariableItalic.eot │ │ ├── Satoshi-VariableItalic.ttf │ │ ├── Satoshi-VariableItalic.woff │ │ └── Satoshi-VariableItalic.woff2 ├── images │ └── preview.png └── robots.txt ├── svelte.config.js ├── tsconfig.json └── vite.config.ts /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/.env.template -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/map_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/.github/ISSUE_TEMPLATE/map_update.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/.github/ISSUE_TEMPLATE/new_feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/.github/ISSUE_TEMPLATE/new_map.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/scoring_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/.github/ISSUE_TEMPLATE/scoring_update.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/.github/workflows/issue.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npm run -s format-check 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @angeluriot 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/README.md -------------------------------------------------------------------------------- /data/journals/data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/journals/data.jsonl -------------------------------------------------------------------------------- /data/journals/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/journals/index.json -------------------------------------------------------------------------------- /data/maps/biology/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/biology/_init_.json -------------------------------------------------------------------------------- /data/maps/biology/covid_19/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/biology/covid_19/_init_.json -------------------------------------------------------------------------------- /data/maps/biology/covid_19/what_is_the_origin_of_sars_cov_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/biology/covid_19/what_is_the_origin_of_sars_cov_2.json -------------------------------------------------------------------------------- /data/maps/education/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/education/_init_.json -------------------------------------------------------------------------------- /data/maps/education/sexual_education/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/education/sexual_education/_init_.json -------------------------------------------------------------------------------- /data/maps/education/sexual_education/sexual_education_effects_on_children.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/education/sexual_education/sexual_education_effects_on_children.json -------------------------------------------------------------------------------- /data/maps/environment/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/environment/_init_.json -------------------------------------------------------------------------------- /data/maps/environment/gas_cars_vs_electric_cars_for_emissions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/environment/gas_cars_vs_electric_cars_for_emissions.json -------------------------------------------------------------------------------- /data/maps/health/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/health/_init_.json -------------------------------------------------------------------------------- /data/maps/health/food_and_drinks/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/health/food_and_drinks/_init_.json -------------------------------------------------------------------------------- /data/maps/health/food_and_drinks/do_sugar_substitutes_cause_cancer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/health/food_and_drinks/do_sugar_substitutes_cause_cancer.json -------------------------------------------------------------------------------- /data/maps/health/food_and_drinks/food/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/health/food_and_drinks/food/_init_.json -------------------------------------------------------------------------------- /data/maps/health/food_and_drinks/food/are_gmos_harmful_to_health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/health/food_and_drinks/food/are_gmos_harmful_to_health.json -------------------------------------------------------------------------------- /data/maps/health/food_and_drinks/food/meat/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/health/food_and_drinks/food/meat/_init_.json -------------------------------------------------------------------------------- /data/maps/health/food_and_drinks/food/meat/does_processed_meat_cause_cancer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/health/food_and_drinks/food/meat/does_processed_meat_cause_cancer.json -------------------------------------------------------------------------------- /data/maps/health/food_and_drinks/food/meat/does_red_meat_cause_cancer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/health/food_and_drinks/food/meat/does_red_meat_cause_cancer.json -------------------------------------------------------------------------------- /data/maps/health/food_and_drinks/food/pesticides/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/health/food_and_drinks/food/pesticides/_init_.json -------------------------------------------------------------------------------- /data/maps/health/food_and_drinks/food/pesticides/glyphosate/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/health/food_and_drinks/food/pesticides/glyphosate/_init_.json -------------------------------------------------------------------------------- /data/maps/health/food_and_drinks/food/pesticides/glyphosate/is_glyphosate_harmful_to_consumer_health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/health/food_and_drinks/food/pesticides/glyphosate/is_glyphosate_harmful_to_consumer_health.json -------------------------------------------------------------------------------- /data/maps/health/food_and_drinks/food/pesticides/glyphosate/is_glyphosate_harmful_to_farmworker_health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/health/food_and_drinks/food/pesticides/glyphosate/is_glyphosate_harmful_to_farmworker_health.json -------------------------------------------------------------------------------- /data/maps/health/smoking_and_vaping/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/health/smoking_and_vaping/_init_.json -------------------------------------------------------------------------------- /data/maps/health/smoking_and_vaping/smoking_vs_vaping_for_health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/health/smoking_and_vaping/smoking_vs_vaping_for_health.json -------------------------------------------------------------------------------- /data/maps/justice/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/justice/_init_.json -------------------------------------------------------------------------------- /data/maps/justice/does_video_surveillance_reduce_crime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/justice/does_video_surveillance_reduce_crime.json -------------------------------------------------------------------------------- /data/maps/medicine/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/medicine/_init_.json -------------------------------------------------------------------------------- /data/maps/medicine/birth_control/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/medicine/birth_control/_init_.json -------------------------------------------------------------------------------- /data/maps/medicine/birth_control/birth_control_pill/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/medicine/birth_control/birth_control_pill/_init_.json -------------------------------------------------------------------------------- /data/maps/medicine/birth_control/birth_control_pill/do_birth_control_pills_cause_weight_gain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/medicine/birth_control/birth_control_pill/do_birth_control_pills_cause_weight_gain.json -------------------------------------------------------------------------------- /data/maps/medicine/covid_19/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/medicine/covid_19/_init_.json -------------------------------------------------------------------------------- /data/maps/medicine/covid_19/are_masks_effective_against_covid_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/medicine/covid_19/are_masks_effective_against_covid_19.json -------------------------------------------------------------------------------- /data/maps/medicine/covid_19/covid_19_vaccines/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/medicine/covid_19/covid_19_vaccines/_init_.json -------------------------------------------------------------------------------- /data/maps/medicine/covid_19/covid_19_vaccines/do_covid_19_vaccines_prevent_symptoms_or_death.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/medicine/covid_19/covid_19_vaccines/do_covid_19_vaccines_prevent_symptoms_or_death.json -------------------------------------------------------------------------------- /data/maps/medicine/covid_19/covid_19_vaccines/do_covid_19_vaccines_reduce_transmission.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/medicine/covid_19/covid_19_vaccines/do_covid_19_vaccines_reduce_transmission.json -------------------------------------------------------------------------------- /data/maps/medicine/covid_19/is_hydroxychloroquine_effective_against_covid_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/medicine/covid_19/is_hydroxychloroquine_effective_against_covid_19.json -------------------------------------------------------------------------------- /data/maps/medicine/covid_19/is_ivermectin_effective_against_covid_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/medicine/covid_19/is_ivermectin_effective_against_covid_19.json -------------------------------------------------------------------------------- /data/maps/medicine/vaccines/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/medicine/vaccines/_init_.json -------------------------------------------------------------------------------- /data/maps/medicine/vaccines/do_vaccines_cause_autism.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/medicine/vaccines/do_vaccines_cause_autism.json -------------------------------------------------------------------------------- /data/maps/pseudoscience/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/pseudoscience/_init_.json -------------------------------------------------------------------------------- /data/maps/pseudoscience/does_homeopathy_work.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/pseudoscience/does_homeopathy_work.json -------------------------------------------------------------------------------- /data/maps/psychology/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/psychology/_init_.json -------------------------------------------------------------------------------- /data/maps/psychology/do_video_games_cause_violence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/psychology/do_video_games_cause_violence.json -------------------------------------------------------------------------------- /data/maps/psychology/gender/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/psychology/gender/_init_.json -------------------------------------------------------------------------------- /data/maps/psychology/gender/what_proportion_of_trans_people_detransition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/psychology/gender/what_proportion_of_trans_people_detransition.json -------------------------------------------------------------------------------- /data/maps/psychology/love_and_sexuality/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/psychology/love_and_sexuality/_init_.json -------------------------------------------------------------------------------- /data/maps/psychology/love_and_sexuality/is_sexual_orientation_socially_influenced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/psychology/love_and_sexuality/is_sexual_orientation_socially_influenced.json -------------------------------------------------------------------------------- /data/maps/sport/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/sport/_init_.json -------------------------------------------------------------------------------- /data/maps/sport/bodybuilding/_init_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/sport/bodybuilding/_init_.json -------------------------------------------------------------------------------- /data/maps/sport/bodybuilding/does_weight_training_prevent_height_growth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/sport/bodybuilding/does_weight_training_prevent_height_growth.json -------------------------------------------------------------------------------- /data/maps/sport/does_stretching_prevent_muscle_soreness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/sport/does_stretching_prevent_muscle_soreness.json -------------------------------------------------------------------------------- /data/maps/sport/does_warming_up_prevent_injuries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/data/maps/sport/does_warming_up_prevent_injuries.json -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/contribute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/doc/contribute/README.md -------------------------------------------------------------------------------- /doc/contribute/maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/doc/contribute/maps.md -------------------------------------------------------------------------------- /doc/contribute/papers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/doc/contribute/papers.md -------------------------------------------------------------------------------- /doc/scoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/doc/scoring/README.md -------------------------------------------------------------------------------- /doc/scoring/maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/doc/scoring/maps.md -------------------------------------------------------------------------------- /doc/scoring/papers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/doc/scoring/papers.md -------------------------------------------------------------------------------- /doc/why.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/doc/why.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/dockerfile -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /resources/misc/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/resources/misc/add.png -------------------------------------------------------------------------------- /resources/misc/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/resources/misc/bar.png -------------------------------------------------------------------------------- /resources/misc/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/resources/misc/download.png -------------------------------------------------------------------------------- /resources/misc/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/resources/misc/edit.png -------------------------------------------------------------------------------- /resources/misc/edit_paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/resources/misc/edit_paper.png -------------------------------------------------------------------------------- /resources/misc/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/resources/misc/home.png -------------------------------------------------------------------------------- /resources/misc/journal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/resources/misc/journal.png -------------------------------------------------------------------------------- /resources/misc/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/resources/misc/map.png -------------------------------------------------------------------------------- /resources/misc/maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/resources/misc/maps.png -------------------------------------------------------------------------------- /resources/misc/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/resources/misc/new.png -------------------------------------------------------------------------------- /resources/misc/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/resources/misc/paper.png -------------------------------------------------------------------------------- /resources/misc/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/resources/misc/send.png -------------------------------------------------------------------------------- /resources/misc/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/resources/misc/stats.png -------------------------------------------------------------------------------- /resources/misc/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/resources/misc/thumbnail.png -------------------------------------------------------------------------------- /scripts/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/scripts/clean.js -------------------------------------------------------------------------------- /scripts/discord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/scripts/discord.js -------------------------------------------------------------------------------- /scripts/find_more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/scripts/find_more.js -------------------------------------------------------------------------------- /scripts/migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/scripts/migration.js -------------------------------------------------------------------------------- /scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/scripts/search.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/server.js -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- 1 | declare global 2 | { 3 | namespace App {} 4 | } 5 | 6 | export {}; 7 | -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/app.html -------------------------------------------------------------------------------- /src/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/fonts.css -------------------------------------------------------------------------------- /src/hooks.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/hooks.server.ts -------------------------------------------------------------------------------- /src/lib/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/colors.ts -------------------------------------------------------------------------------- /src/lib/display/buttons/default.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/buttons/default.svelte -------------------------------------------------------------------------------- /src/lib/display/buttons/edit.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/buttons/edit.svelte -------------------------------------------------------------------------------- /src/lib/display/buttons/info.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/buttons/info.svelte -------------------------------------------------------------------------------- /src/lib/display/details/cards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/details/cards.ts -------------------------------------------------------------------------------- /src/lib/display/details/info_bubble.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/details/info_bubble.svelte -------------------------------------------------------------------------------- /src/lib/display/details/journal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/details/journal.svelte -------------------------------------------------------------------------------- /src/lib/display/details/paper_bubble.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/details/paper_bubble.svelte -------------------------------------------------------------------------------- /src/lib/display/details/paper_content.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/details/paper_content.svelte -------------------------------------------------------------------------------- /src/lib/display/edit/add.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/edit/add.svelte -------------------------------------------------------------------------------- /src/lib/display/edit/autocomplete.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/edit/autocomplete.svelte -------------------------------------------------------------------------------- /src/lib/display/edit/popup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/edit/popup.svelte -------------------------------------------------------------------------------- /src/lib/display/edit/search.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/edit/search.svelte -------------------------------------------------------------------------------- /src/lib/display/edit/send.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/edit/send.svelte -------------------------------------------------------------------------------- /src/lib/display/graph/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/graph/background.ts -------------------------------------------------------------------------------- /src/lib/display/graph/graph.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/graph/graph.svelte -------------------------------------------------------------------------------- /src/lib/display/graph/points.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/graph/points.ts -------------------------------------------------------------------------------- /src/lib/display/graph/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/graph/types.ts -------------------------------------------------------------------------------- /src/lib/display/graph/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/graph/utils.ts -------------------------------------------------------------------------------- /src/lib/display/loading.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/loading.svelte -------------------------------------------------------------------------------- /src/lib/display/overview.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/overview.svelte -------------------------------------------------------------------------------- /src/lib/display/overview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/overview.ts -------------------------------------------------------------------------------- /src/lib/display/title.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/title.svelte -------------------------------------------------------------------------------- /src/lib/display/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/display/utils.ts -------------------------------------------------------------------------------- /src/lib/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/errors.ts -------------------------------------------------------------------------------- /src/lib/github/issue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/github/issue.ts -------------------------------------------------------------------------------- /src/lib/home/background.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/home/background.svelte -------------------------------------------------------------------------------- /src/lib/home/popup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/home/popup.svelte -------------------------------------------------------------------------------- /src/lib/home/search.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/home/search.svelte -------------------------------------------------------------------------------- /src/lib/list/background.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/list/background.svelte -------------------------------------------------------------------------------- /src/lib/list/maps.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/list/maps.svelte -------------------------------------------------------------------------------- /src/lib/scoring/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/scoring/map.ts -------------------------------------------------------------------------------- /src/lib/scoring/paper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/scoring/paper.ts -------------------------------------------------------------------------------- /src/lib/server/data/csv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/data/csv.ts -------------------------------------------------------------------------------- /src/lib/server/data/fake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/data/fake.ts -------------------------------------------------------------------------------- /src/lib/server/data/journal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/data/journal.ts -------------------------------------------------------------------------------- /src/lib/server/data/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/data/map.ts -------------------------------------------------------------------------------- /src/lib/server/data/paper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/data/paper.ts -------------------------------------------------------------------------------- /src/lib/server/data/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/data/validate.ts -------------------------------------------------------------------------------- /src/lib/server/display/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/display/images.ts -------------------------------------------------------------------------------- /src/lib/server/display/title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/display/title.ts -------------------------------------------------------------------------------- /src/lib/server/display/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/display/utils.ts -------------------------------------------------------------------------------- /src/lib/server/emojis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/index.ts -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/alembic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/alembic.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/angry-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/angry-face.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/automobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/automobile.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/bacon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/bacon.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/balance-scale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/balance-scale.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/bar-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/bar-chart.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/bat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/bat.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/black-nib.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/black-nib.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/bookmark-tabs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/bookmark-tabs.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/books.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/books.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/boomerang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/boomerang.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/brain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/brain.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/busts-in-silhouette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/busts-in-silhouette.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/camera-with-flash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/camera-with-flash.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/candy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/candy.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/card-index-dividers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/card-index-dividers.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/cigarette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/cigarette.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/control-knobs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/control-knobs.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/crystal-ball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/crystal-ball.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/cut-of-meat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/cut-of-meat.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/dashing-away.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/dashing-away.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/dizzy-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/dizzy-face.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/dna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/dna.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/dotted-line-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/dotted-line-face.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/ear-of-corn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/ear-of-corn.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/eyes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/eyes.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/face-exhaling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/face-exhaling.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/face-vomiting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/face-vomiting.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/face-with-diagonal-mouth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/face-with-diagonal-mouth.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/face-with-medical-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/face-with-medical-mask.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/face-with-monocle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/face-with-monocle.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/face-with-open-eyes-and-hand-over-mouth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/face-with-open-eyes-and-hand-over-mouth.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/face-with-peeking-eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/face-with-peeking-eye.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/face-with-raised-eyebrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/face-with-raised-eyebrow.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/face-with-spiral-eyes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/face-with-spiral-eyes.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/face-with-thermometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/face-with-thermometer.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/family-adult-adult-child-child.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/family-adult-adult-child-child.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/family-adult-child.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/family-adult-child.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/family.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/family.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/farmer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/farmer.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/fearful-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/fearful-face.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/fork-and-knife-with-plate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/fork-and-knife-with-plate.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/frowning-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/frowning-face.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/fuel-pump.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/fuel-pump.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/game-die.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/game-die.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/globe-showing-europe-africa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/globe-showing-europe-africa.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/globe-with-meridians.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/globe-with-meridians.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/hamburger.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/heavy-equals-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/heavy-equals-sign.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/high-voltage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/high-voltage.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/hourglass-not-done.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/hourglass-not-done.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/house.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/house.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/hugging-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/hugging-face.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/left-arrow-curving-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/left-arrow-curving-right.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/left-arrow.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/link.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/locked.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/magnifying-glass-tilted-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/magnifying-glass-tilted-left.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/meat-on-bone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/meat-on-bone.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/medical-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/medical-symbol.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/memo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/memo.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/microbe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/microbe.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/microscope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/microscope.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/money-mouth-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/money-mouth-face.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/mouse-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/mouse-face.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/neutral-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/neutral-face.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/open-book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/open-book.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/open-mailbox-with-lowered-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/open-mailbox-with-lowered-flag.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/page-with-curl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/page-with-curl.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/pencil.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/people-holding-hands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/people-holding-hands.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/person-cartwheeling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/person-cartwheeling.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/person-gesturing-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/person-gesturing-no.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/person-gesturing-ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/person-gesturing-ok.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/person-lifting-weights.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/person-lifting-weights.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/person-raising-hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/person-raising-hand.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/person-running-facing-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/person-running-facing-right.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/person-shrugging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/person-shrugging.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/person-standing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/person-standing.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/petri-dish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/petri-dish.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/pile-of-poo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/pile-of-poo.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/pill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/pill.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/pinching-hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/pinching-hand.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/pregnant-woman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/pregnant-woman.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/puzzle-piece.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/puzzle-piece.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/rainbow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/rainbow.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/relieved-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/relieved-face.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/restroom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/restroom.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/revolving-hearts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/revolving-hearts.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/right-arrow-curving-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/right-arrow-curving-left.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/right-arrow.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/robot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/robot.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/sake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/sake.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/school.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/school.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/sheaf-of-rice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/sheaf-of-rice.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/shuffle-tracks-button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/shuffle-tracks-button.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/slightly-smiling-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/slightly-smiling-face.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/smiling-face-with-halo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/smiling-face-with-halo.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/smiling-face-with-hearts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/smiling-face-with-hearts.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/smiling-face-with-smiling-eyes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/smiling-face-with-smiling-eyes.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/smiling-face-with-sunglasses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/smiling-face-with-sunglasses.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/sparkling-heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/sparkling-heart.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/star-struck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/star-struck.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/syringe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/syringe.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/teacher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/teacher.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/teddy-bear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/teddy-bear.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/test-tube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/test-tube.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/thinking-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/thinking-face.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/thumbs-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/thumbs-down.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/thumbs-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/thumbs-up.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/tomato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/tomato.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/transgender-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/transgender-symbol.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/trophy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/trophy.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/umbrella-with-rain-drops.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/umbrella-with-rain-drops.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/video-camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/video-camera.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/video-game.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/video-game.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/wastebasket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/wastebasket.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/woozy-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/woozy-face.svg -------------------------------------------------------------------------------- /src/lib/server/emojis/svgs/zipper-mouth-face.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/emojis/svgs/zipper-mouth-face.svg -------------------------------------------------------------------------------- /src/lib/server/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/fonts.ts -------------------------------------------------------------------------------- /src/lib/server/github/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/github/api.ts -------------------------------------------------------------------------------- /src/lib/server/github/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/github/index.ts -------------------------------------------------------------------------------- /src/lib/server/search/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/search/api.ts -------------------------------------------------------------------------------- /src/lib/server/search/paper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/search/paper.ts -------------------------------------------------------------------------------- /src/lib/server/templates/graph.svg.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/templates/graph.svg.ejs -------------------------------------------------------------------------------- /src/lib/server/templates/image.svg.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/templates/image.svg.ejs -------------------------------------------------------------------------------- /src/lib/server/templates/overview.svg.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/templates/overview.svg.ejs -------------------------------------------------------------------------------- /src/lib/server/templates/preview.svg.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/templates/preview.svg.ejs -------------------------------------------------------------------------------- /src/lib/server/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/server/utils.ts -------------------------------------------------------------------------------- /src/lib/statistics/bars.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/statistics/bars.svelte -------------------------------------------------------------------------------- /src/lib/statistics/categories.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/statistics/categories.svelte -------------------------------------------------------------------------------- /src/lib/statistics/scatter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/statistics/scatter.svelte -------------------------------------------------------------------------------- /src/lib/svgs/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/add.svg -------------------------------------------------------------------------------- /src/lib/svgs/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/arrow.svg -------------------------------------------------------------------------------- /src/lib/svgs/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/back.svg -------------------------------------------------------------------------------- /src/lib/svgs/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/cross.svg -------------------------------------------------------------------------------- /src/lib/svgs/csv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/csv.svg -------------------------------------------------------------------------------- /src/lib/svgs/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/download.svg -------------------------------------------------------------------------------- /src/lib/svgs/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/edit.svg -------------------------------------------------------------------------------- /src/lib/svgs/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/home.svg -------------------------------------------------------------------------------- /src/lib/svgs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/link.svg -------------------------------------------------------------------------------- /src/lib/svgs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/logo.svg -------------------------------------------------------------------------------- /src/lib/svgs/png.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/png.svg -------------------------------------------------------------------------------- /src/lib/svgs/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/random.svg -------------------------------------------------------------------------------- /src/lib/svgs/small-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/small-add.svg -------------------------------------------------------------------------------- /src/lib/svgs/small-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/small-remove.svg -------------------------------------------------------------------------------- /src/lib/svgs/submit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/submit.svg -------------------------------------------------------------------------------- /src/lib/svgs/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/svg.svg -------------------------------------------------------------------------------- /src/lib/svgs/title.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/title.svg -------------------------------------------------------------------------------- /src/lib/svgs/txt-copied.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/txt-copied.svg -------------------------------------------------------------------------------- /src/lib/svgs/txt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/svgs/txt.svg -------------------------------------------------------------------------------- /src/lib/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/types/index.ts -------------------------------------------------------------------------------- /src/lib/types/journal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/types/journal.ts -------------------------------------------------------------------------------- /src/lib/types/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/types/map.ts -------------------------------------------------------------------------------- /src/lib/types/paper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/types/paper.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/routes/+error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/+error.svelte -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/+page.server.ts -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/journal/[id]/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/journal/[id]/+server.ts -------------------------------------------------------------------------------- /src/routes/journal/[id]/types.ts: -------------------------------------------------------------------------------- 1 | export interface Params 2 | { 3 | id: string; 4 | } 5 | -------------------------------------------------------------------------------- /src/routes/journal/[id]/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/journal/[id]/validate.ts -------------------------------------------------------------------------------- /src/routes/maps/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/maps/+page.server.ts -------------------------------------------------------------------------------- /src/routes/maps/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/maps/+page.svelte -------------------------------------------------------------------------------- /src/routes/maps/[map]/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/maps/[map]/+page.server.ts -------------------------------------------------------------------------------- /src/routes/maps/[map]/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/maps/[map]/+page.svelte -------------------------------------------------------------------------------- /src/routes/maps/[map]/[file]/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/maps/[map]/[file]/+server.ts -------------------------------------------------------------------------------- /src/routes/maps/[map]/[file]/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/maps/[map]/[file]/types.ts -------------------------------------------------------------------------------- /src/routes/maps/[map]/[file]/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/maps/[map]/[file]/validate.ts -------------------------------------------------------------------------------- /src/routes/maps/[map]/edit/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/maps/[map]/edit/+server.ts -------------------------------------------------------------------------------- /src/routes/maps/[map]/edit/edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/maps/[map]/edit/edit.ts -------------------------------------------------------------------------------- /src/routes/maps/[map]/edit/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/maps/[map]/edit/types.ts -------------------------------------------------------------------------------- /src/routes/maps/[map]/edit/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/maps/[map]/edit/validate.ts -------------------------------------------------------------------------------- /src/routes/maps/[map]/types.ts: -------------------------------------------------------------------------------- 1 | export interface Params 2 | { 3 | map: string; 4 | } 5 | -------------------------------------------------------------------------------- /src/routes/maps/[map]/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/maps/[map]/validate.ts -------------------------------------------------------------------------------- /src/routes/maps/random/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/maps/random/+page.server.ts -------------------------------------------------------------------------------- /src/routes/maps/random/+page.svelte: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/routes/request/new/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/request/new/+server.ts -------------------------------------------------------------------------------- /src/routes/request/new/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/request/new/validate.ts -------------------------------------------------------------------------------- /src/routes/search/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/search/+server.ts -------------------------------------------------------------------------------- /src/routes/statistics/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/statistics/+page.server.ts -------------------------------------------------------------------------------- /src/routes/statistics/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/src/routes/statistics/+page.svelte -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-BoldCondensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-BoldCondensed.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-BoldCondensedItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-BoldCondensedItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-Condensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-Condensed.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-CondensedItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-CondensedItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /static/fonts/Roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Black.eot -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Black.ttf -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Black.woff -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Black.woff2 -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-BlackItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-BlackItalic.eot -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-BlackItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-BlackItalic.woff -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-BlackItalic.woff2 -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Bold.eot -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Bold.woff -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Bold.woff2 -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-BoldItalic.eot -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-BoldItalic.woff -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-BoldItalic.woff2 -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Italic.eot -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Italic.woff -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Italic.woff2 -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Light.eot -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Light.ttf -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Light.woff -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Light.woff2 -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-LightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-LightItalic.eot -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-LightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-LightItalic.woff -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-LightItalic.woff2 -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Medium.eot -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Medium.woff -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Medium.woff2 -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-MediumItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-MediumItalic.eot -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-MediumItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-MediumItalic.woff -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-MediumItalic.woff2 -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Regular.eot -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Regular.woff -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Variable.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Variable.eot -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Variable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Variable.ttf -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Variable.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Variable.woff -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-Variable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-Variable.woff2 -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-VariableItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-VariableItalic.eot -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-VariableItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-VariableItalic.ttf -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-VariableItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-VariableItalic.woff -------------------------------------------------------------------------------- /static/fonts/Satoshi/Satoshi-VariableItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/fonts/Satoshi/Satoshi-VariableItalic.woff2 -------------------------------------------------------------------------------- /static/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/static/images/preview.png -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angeluriot/Papermap/HEAD/vite.config.ts --------------------------------------------------------------------------------