diff --git a/.gitignore b/.gitignore index 9af02ab6..a8e4dd7a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .vscode/ public/ .DS_Store +resources/ diff --git a/.gitmodules b/.gitmodules index 79cdc53e..05579f08 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,6 @@ -[submodule "themes/ananke"] - path = themes/ananke - url = https://github.com/budparr/gohugo-theme-ananke.git [submodule "themes/airspace"] path = themes/airspace url = https://github.com/themefisher/airspace-hugo.git -[submodule "themes/syna"] - path = themes/syna - url = https://git.okkur.org/syna +[submodule "themes/theme-research-group"] + path = themes/theme-research-group + url = https://github.com/HugoBlox/theme-research-group.git diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..22111f9f --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,278 @@ +# Contributing to ReSA website + +:+1::tada: First off, thanks for taking the time to contribute! :tada::+1: + +The following is a set of guidelines for contributing to the ReSA website, +which is hosted in the [ReSA Organization](https://github.com/researchsoft) +on GitHub. These are mostly guidelines, not rules. Use your best judgment, +and feel free to propose changes to this document in a pull request. + +This guide is inspired from +[Atom's contributing guidelines](https://github.com/atom/atom/blob/master/CONTRIBUTING.md). + +## How Can I Contribute? + +### Reporting Bugs + +This section guides you through submitting a bug report for Research +Software Alliance. Following these guidelines helps maintainers understand your +report :pencil:, reproduce the behavior :computer: :computer:, and find +related reports :mag_right:. + +Before creating bug reports, please check +[this list](#before-submitting-a-bug-report) as you might find out that you +don't need to create one. When you are creating a bug report, please +[include as many details as possible](#how-do-i-submit-a-good-bug-report). + +> **Note:** If you find a **Closed** issue that seems like it is the same thing +that you're experiencing, open a new issue and include a link to the original +issue in the body of your new one. + +#### Before Submitting A Bug Report + +* **Perform a +[cursory search](https://github.com/researchsoft/website/issues?q=is%3Aopen+is%3Aissue)** to see if the problem has already been +reported. If it has **and the issue is still open**, add a comment to the +existing issue instead of opening a new one. + +#### How Do I Submit A (Good) Bug Report? + +Bugs are tracked as GitHub issues. To report a bug, create an issue in the +[website repository](https://github.com/researchsoft/website) by filling in the +[bug report template](https://github.com/researchsoft/website//issues/new?assignees=&labels=bug%2Cneeds+triage&projects=&template=bug_report.yaml&title=BUG%3A+). + +Explain the problem and include additional details to help maintainers +reproduce the problem: + +* **Use clear and descriptive title** for the issue to identify the problem. +* **Describe the exact steps to reproduce the problem** n as many details as +possible. For example: which command do you use in the terminal or in GitHub +browser. Explain **how you did different steps, in addition to what you did**. +For example: if you moved your cursor to next line, please mention if you used +the mouse, or a keyboard button or a programming command in an IDE or GitHub +browser. +* **Provide specific examples to demonstrate the steps**. Include links to +files or GitHub projects, or copy/paste text or code. +* **Describe the behavior you observed after following the steps** and +point out the exact problem in that behaviour/output. +* **Explain what behaviour you expected to see instead and why**. +* **Include screenshots or animated GIF/video** which show how you followed the +steps and clearly demonstrate the problem in the output you observe. + +Provide more context by answering the following questions: + +* Can you reproduce the problem on another branch? +* Did the problem started happening recently i.e. in the new website (i.e. when +theme is `beautifulhugo`) or was this a problem in the older version too (i.e. +when theme is `Syna`)? +* **Can you reliably reproduce the issue?** If not, please describe how often +the problem occurs and under what conditions does it normally occur. +* If the problem is related to working with files (e.g. opening or editing +files), **does the problem occur for all the files and folders?** Does the +problem occur only when working with local or remote files (e.g., on network +drives), with specific type of file (e.g. .md or .html, etc.), with files with +large size, with files with more number of lines, with files with a specific +encoding? It there anything else specific about the files you are using? + +### Suggesting Enhancements + +#### Before Submitting An Enhancement Suggestion + +#### How Do I Submit A (Good) Enhancement Suggestion? + +### Pull Requests + +### Style guide (Git Commit Messages) + +* Use the present tense ("Add feature" not "Added feature") +* Use the imperative mood ("Move cursor to..." not "Moves cursor to...") +* Limit the first line to 72 characters or less +* Reference issues and pull requests liberally after the first line +* When only changing documentation, include `[ci skip]` in the commit title +* Consider starting the commit message with an applicable emoji: + * :art: `:art:` when improving the format/structure of the code + * :racehorse: `:racehorse:` when improving performance + * :non-potable_water: `:non-potable_water:` when plugging memory leaks + * :memo: `:memo:` when writing docs + * :penguin: `:penguin:` when fixing something on Linux + * :apple: `:apple:` when fixing something on macOS + * :checkered_flag: `:checkered_flag:` when fixing something on Windows + * :bug: `:bug:` when fixing a bug + * :fire: `:fire:` when removing code or files + * :green_heart: `:green_heart:` when fixing the CI build + * :white_check_mark: `:white_check_mark:` when adding tests + * :lock: `:lock:` when dealing with security + * :arrow_up: `:arrow_up:` when upgrading dependencies + * :arrow_down: `:arrow_down:` when downgrading dependencies + * :shirt: `:shirt:` when removing linter warnings + +### Additional Notes + +#### Issue Labels + +| Label Name | Description | +| --- | --- | +| `enhancement` | New feature or request | +| `bug` | Something is not working as expected | +| `question` | Further information is requested | +| `feedback` | General feedback more than bug reports or feature requests | +| `help wanted` | Extra attention is needed | +| `good first issue` | Easy issues that would be good for new contributors | +| `blocked` | Issues blocked/dependent on other issues | +| `duplicate` | This issue or pull request already exists | +| `wontfix` | This will not be worked on| +| `invalid` | This doesn't seem right (e.g. user error) | +| `wrong-repo` | Issues reported on the wrong repository | + +#### Pull Request Labels + +| Label Name | Description | +| --- | --- | +| `work-in-progress` | PRs which are still being worked on | +| `testing` | To test new or existing features, functions, or code | +| `needs-review`| To indicate that a pull request requires review | +| `under-review` | To indicate that a pull request is under review | + +## Installing a new theme + +This website is built on Hugo framework. To install a new Hugo theme, please +take the following steps: + +### Assumptions + +1. You have already installed Hugo on your machine +2. You have git installed on your machine and you are familiar with basic git +usage. + +### Adding a new theme + +* You can add a new theme as a submodule as follows: + +```zsh +git submodule init # If you haven't initialized before +git submodule add https://github.com/halogenica/beautifulhugo.git +themes/beautifulhugo # This would add the beautifulhugo theme +``` + +* The theme is successfully installed if you see it inside the `/themes` +directory (for example, in this case you will see `/themes/beautifulhugo/`). +* To use the theme, make sure that you set it accordingly in the `config.toml`: + +```zsh +theme = "theme_name" +``` + +**Note**: Here `"theme_name"` is the exact name of the theme as mentioned in +the `/themes` directory (for example, in this case it will be +`theme = "beautifulhugo"`). + +## Adding a table + +Here is a step-by-step demo about making a table: + +### Create a basic table + +* A vertical line `|` should be added to both the ends of each row. +* Separate the columns by a vertical line `|`. +* The column header can be separated from the remaining row by using three or +more dashes `---`. + +For example, the below code will result in the table that follows it: + +```zsh +| Country| Capital City | +| --- | --- | +| Canada | Ottawa | +| Australia | Canberra | +| Egypt | Cairo | +``` + +| Country| Capital City | +| --- | --- | +| Canada | Ottawa | +| Australia | Canberra | +| Egypt | Cairo | + +Here are the steps to **format** the table: + +### Text Alignment + +* To align text in the columns to the left, right, or center add a colon `:` to +the left, right, or on both side of the dashes`---` within the header row. +* `:--`: left alignment +* `--:`: right alignment +* `:-:`: center alignment + +For example, the below code will result in the table that follows it: + +```zsh +| Country| Capital City | +| :---: | :---: | +| Canada | Ottawa | +| Australia | Canberra | +| Egypt | Cairo | +``` + +| Country| Capital City | +| :---: | :---: | +| Canada | Ottawa | +| Australia | Canberra | +| Egypt | Cairo | + +### Going to next line + +To go to next line in a row, use `\`. + +```zsh +| Country | Capital City | +| --- | --- | +| Canada | Ottawa | +| Australia | Canberra | +| Egypt | Cairo | +``` + +| Country | Capital City | +| --- | --- | +| Canada | Ottawa | +| Australia | Canberra | +| Egypt | Cairo | + +**Note**: the text in the table can be further formatted. For example, adding +links, inline code (words or phrases in backticks only, not code blocks). + +## Adding an image + +Here is a step-by-step demo about how to add an image using an IDE: + +* Clone the `website` repository from . +* Upload the image to the folder website/static/images. +* Add image details to appropriate .md file using the following code: + +```zsh ++++ +title = "" +#weight = + +[asset] + image = "image_name_with_file_extension" + url = "relevant_url" + text = "image_short_description" ++++ +``` + +**Note**: + +* Here `"image_name_with_file_extension"` is the exact name of the image as +mentioned in the `/static` directory. +* `text` is used to give a short description of the image. Please enter a +short description of the image after the `=` sign. +* `url` is an optional attribute. It is used if we want to hyperlink the image +with some relevant link. Please enter the hyperlink after the `=` sign. +* Image caption: +... + +Step x: How to add caption? + +Step (x+1): How to change size of the image? + +Step (x+2): How to add alt text? diff --git a/archetypes/default.md b/archetypes/default.md deleted file mode 100644 index 00e77bd7..00000000 --- a/archetypes/default.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -title: "{{ replace .Name "-" " " | title }}" -date: {{ .Date }} -draft: true ---- - diff --git a/assets/jsconfig.json b/assets/jsconfig.json new file mode 100644 index 00000000..085e11b9 --- /dev/null +++ b/assets/jsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "baseUrl": ".", + "paths": { + "*": [ + "../../../../Library/Caches/hugo_cache/modules/filecache/modules/pkg/mod/github.com/!hugo!blox/hugo-blox-builder/modules/blox-bootstrap/v5@v5.9.8-0.20241012174104-661cadc17327/assets/*" + ] + } + } +} \ No newline at end of file diff --git a/assets/media/icon.png b/assets/media/icon.png new file mode 100644 index 00000000..280206da Binary files /dev/null and b/assets/media/icon.png differ diff --git a/assets/media/icons/.gitkeep b/assets/media/icons/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/static/images/resa-logo.svg b/assets/media/logo.svg similarity index 100% rename from static/images/resa-logo.svg rename to assets/media/logo.svg diff --git a/static/images/main-hero.png b/assets/media/main-hero.png similarity index 100% rename from static/images/main-hero.png rename to assets/media/main-hero.png diff --git a/assets/media/main-hero_bottom_half.png b/assets/media/main-hero_bottom_half.png new file mode 100644 index 00000000..cab9bbd2 Binary files /dev/null and b/assets/media/main-hero_bottom_half.png differ diff --git a/assets/media/resa-logo-inverted.svg b/assets/media/resa-logo-inverted.svg new file mode 100644 index 00000000..6bcf7c69 --- /dev/null +++ b/assets/media/resa-logo-inverted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/media/welcome.jpg b/assets/media/welcome.jpg new file mode 100644 index 00000000..30acf67e Binary files /dev/null and b/assets/media/welcome.jpg differ diff --git a/assets/scss/template.scss b/assets/scss/template.scss new file mode 100644 index 00000000..8ae7c0f6 --- /dev/null +++ b/assets/scss/template.scss @@ -0,0 +1,9 @@ +// Make page header alignment consistent with widget page header alignment +.universal-wrapper h1 { + text-align: center; +} + +// Center the CTA shortcode button +.cta-group { + justify-content: center; +} diff --git a/config.toml b/config.toml deleted file mode 100644 index dcdf8184..00000000 --- a/config.toml +++ /dev/null @@ -1,289 +0,0 @@ -baseURL = "https://researchsoft.org" -# Google Analytics tracking -googleAnalytics = "UA-181241343-1" - -languageCode = "en-uk" -LanguageCode = "en-uk" -title = "Research Software Alliance" -theme = "syna" -enableGitInfo = true -version = "0.17.3" -rssLimit = 100 - -[mediaTypes] - [mediaTypes."application/atom+xml"] - suffixes = ["xml"] - -[outputs] - home = ["ATOM", "HTML"] - page = ["HTML"] - section = ["HTML"] - taxonomy = ["HTML"] - term = ["HTML"] - -[outputFormats] - [outputFormats.ATOM] - mediaType = "application/atom+xml" - baseName = "feed" - -[markup] - [markup.goldmark] - [markup.goldmark.renderer] - unsafe = true - -[params] - github = "https://github.com/researchsoft" - site_logo = "img/resa-logo-software-green.png" - name = "The Research Software Alliance" - - date_format = "January 2, 2006" - dateFormatAtomFeed = "2006-01-02T15:04:05-07:00" - dateFormatTag = "2006" - feedUUID = "283aaa54-faf6-4bcd-9cb8-74a13b96063c" - # icon = "" - # icon96 = "" - # logo = "img/resa-logo-software-green.png" - mainSections = ["blog"] - buildFuture = true - - - [params.colors] - primary = "darkgreen" - secondary = "darkorange" - -[[menu.main]] - identifier = "/about-resa" - name = "About" - weight = 10 - -[[menu.main]] - parent = "/about-resa" - url = "/about-resa" - name = "About" - weight = 11 - -[[menu.main]] - parent = "/about-resa" - url = "/governance" - name = "Governance" - weight = 12 - -[[menu.main]] - parent = "/about-resa" - url = "/our-team" - name = "Our Team" - weight = 13 - -[[menu.main]] - parent = "/about-resa" - url = "/membership" - name = "Organisational Membership" - weight = 14 - -[[menu.main]] - parent = "/about-resa" - url = "/stakeholders" - name = "Stakeholders" - weight = 15 - -[[menu.main]] - parent = "/about-resa" - url = "/donate" - name = "Donate" - weight = 16 - -[[menu.main]] - identifier = "/taskforces" - name = "Task Forces" - weight = 20 - -[[menu.main]] - parent = "/taskforces" - url = "/taskforces" - name = "About Task Forces" - weight = 21 - - [[menu.main]] - parent = "/taskforces" - url = "/tf-support" - name = "Task Force Support" - weight = 22 - -[[menu.main]] - identifier = "/forums" - name = "Forums" - weight = 30 - -[[menu.main]] - parent = "/forums" - url = "/community-leadership-forum" - name = "Research Software Community Leadership Forum" - weight = 31 - -[[menu.main]] - parent = "/forums" - url = "/funders-forum" - name = "Research Software Funders Forum" - weight = 32 - -[[menu.main]] - parent = "/forums" - url = "/RSI-forum" - name = "Research Software Infrastructure Forum" - weight = 33 - - [[menu.main]] - parent = "/forums" - url = "/rsp-forum" - name = "Research Software Policy Forum" - weight = 34 - - [[menu.main]] - parent = "/forums" - url = "/mars-forum" - name = "Metascience and Research Software Forum" - weight = 35 - - [[menu.main]] - parent = "/forums" - url = "/pubsoft-forum" - name = "Publishing Research Software Forum" - weight = 36 - -[[menu.main]] - parent = "/forums" - url = "/stars-forum" - name = "Skills and Training for Research Software Forum" - weight = 37 - -[[menu.main]] - parent = "/forums" - url = "https://adore.software/" - name = "ADORE.software Secretariat" - weight = 38 - -[[menu.main]] - parent = "/forums" - url = "https://researchsoftware.org/council.html" - name = "International Council of RSE Associations" - weight = 39 - -[[menu.main]] - identifier = "/resa-resources" - url = "/resa-resources" - name = "Resources" - weight = 40 - -[[menu.main]] - parent = "/resa-resources" - name = "Resources" - url = "/resa-resources" - weight = 41 - -[[menu.main]] - parent = "/resa-resources" - name = "Guidelines" - url = "/guidelines" - weight = 42 - -[[menu.main]] - parent = "/resa-resources" - name = "Funding Opportunities" - url = "/funding-opportunities" - weight = 43 - -[[menu.main]] - parent = "/resa-resources" - name = "Software Policies" - url = "/software-policies" - weight = 44 - -[[menu.main]] - parent = "/resa-resources" - name = "ADORE.software Declaration" - url = "https://adore.software/" - weight = 45 - -[[menu.main]] - parent = "/resa-resources" - name = "Research Software Engineers (RSEs)" - url = "/research-software-engineers" - weight = 46 - -[[menu.main]] - url = "/news" - name = "News" - weight = 50 - -[[menu.main]] - identifier = "/events" - name = "Events" - weight = 60 - -[[menu.main]] - parent = "/events" - name = "Events" - url = "/events" - weight = 61 - -[[menu.main]] - parent = "/events" - name = "ReSA Community Calls" - url = "/community-calls" - weight = 62 - -[[menu.main]] - url = "/blog" - name = "Blog" - weight = 70 - -[[menu.footer_social]] - weight = 30 - name = "github" - url = "https://github.com/researchsoft/website" - pre = "fab fa-github fa-stack-2x" - -[[menu.footer_social]] - weight = 40 - name = "email" - url = "/contact/" - pre = "fa fa-envelope" - -[[menu.footer_social]] - weight = 50 - name = "slack" - url = "https://join.slack.com/t/researchsoft/shared_invite/zt-1flmrglww-SoWjAK_5TJyqLU_~Jx697w" - pre = "fab fa-slack" - -[[menu.footer_social]] - weight = 60 - name = "Mastodon" - url = "https://fosstodon.org/@researchsoft" - pre = "fab fa-mastodon" - -[[menu.footer_social]] - weight = 60 - name = "LinkedIn" - url = "https://www.linkedin.com/company/research-software-alliance" - pre = "fab fa-linkedin" - -[[menu.footer_social]] - weight = 70 - name = "Atom Feed" - url = "/feed.xml" - pre = "fa fa-rss" - -[[menu.copyright_footer]] - url = "/license" - name = "License" - weight = 60 - color = "primary" - -[[menu.copyright_footer]] - url = "/code-of-conduct" - name = "Code of Conduct" - weight = 70 - color = "primary" - -[author] - name = "Research Software Alliance" diff --git a/config/_default/hugo.yaml b/config/_default/hugo.yaml new file mode 100644 index 00000000..7aa02ac9 --- /dev/null +++ b/config/_default/hugo.yaml @@ -0,0 +1,63 @@ +# Configuration of Hugo +# Guide: https://docs.hugoblox.com/tutorial/ +# Hugo Documentation: https://gohugo.io/getting-started/configuration/#all-configuration-settings +# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/ + +title: Research Software Alliance # Website name +baseURL: 'https://researchsoft.org' # Website URL + +############################ +## LANGUAGE +############################ + +defaultContentLanguage: en +hasCJKLanguage: false +defaultContentLanguageInSubdir: false +removePathAccents: true + +############################ +## ADVANCED +############################ + +enableGitInfo: false +summaryLength: 30 +pagination: + pagerSize: 1000 +enableEmoji: true +enableRobotsTXT: true +footnotereturnlinkcontents: ^ +ignoreFiles: [\.ipynb$, .ipynb_checkpoints$, \.Rmd$, \.Rmarkdown$, _cache$] +permalinks: + authors: '/author/:slug/' + tags: '/tag/:slug/' + categories: '/category/:slug/' + publication_types: '/publication-type/:slug/' +disableAliases: true +outputs: + home: [HTML, RSS, JSON, WebAppManifest, headers, redirects] + section: [HTML, RSS] +imaging: + resampleFilter: lanczos + quality: 75 + anchor: smart +timeout: 600000 +taxonomies: + tag: tags + category: categories + publication_type: publication_types + author: authors +markup: + _merge: deep +related: + threshold: 80 + includeNewer: true + toLower: true + indices: + - name: tags + weight: 100 + - name: categories + weight: 70 +security: + _merge: deep +sitemap: + _merge: deep diff --git a/config/_default/languages.yaml b/config/_default/languages.yaml new file mode 100644 index 00000000..88fa733d --- /dev/null +++ b/config/_default/languages.yaml @@ -0,0 +1,22 @@ +# Languages +# Create a section for each of your site's languages. +# Documentation: https://docs.hugoblox.com/reference/language/ + +# Default language +en: + languageCode: en-us + # Uncomment for multi-lingual sites, and move English content into `en` sub-folder. + #contentDir: content/en + +# Uncomment the lines below to configure your website in a second language. +#zh: +# languageCode: zh-Hans +# contentDir: content/zh +# title: Chinese website title... +# params: +# description: Site description in Chinese... +# menu: +# main: +# - name: δΌ  +# url: '#about' +# weight: 1 diff --git a/config/_default/menus.yaml b/config/_default/menus.yaml new file mode 100644 index 00000000..ee991a61 --- /dev/null +++ b/config/_default/menus.yaml @@ -0,0 +1,159 @@ +# Navigation Links +# To link a homepage widget, specify the URL as a hash `#` followed by the filename of the +# desired widget in your `content/home/` folder. +# The weight parameter defines the order that the links will appear in. + +main: + - name: 'About' + weight: 10 + - parent: 'About' + name: 'About ReSA' + url: about + weight: 10 + - parent: 'About' + name: 'Governance' + url: about/governance + weight: 20 + - parent: 'About' + name: 'Our Team' + url: about/our-team + weight: 30 + - parent: 'About' + name: 'Organisational Membership' + url: about/membership + weight: 40 + - parent: 'About' + name: 'Stakeholders' + url: about/stakeholders + weight: 50 + - parent: 'About' + name: 'Donate' + url: about/donate + weight: 60 + - parent: 'About' + name: 'Contact Us' + url: about/contact + weight: 70 + - parent: 'About' + name: 'Code of Conduct' + url: about/code-of-conduct + weight: 80 + + + - name: 'Task Forces ' + weight: 20 + - parent: 'Task Forces ' + name: 'About Task Forces' + url: taskforces + weight: 10 + - parent: 'Task Forces ' + name: 'Task Force Support' + url: taskforces/tf-support + weight: 20 + + - name: 'Forums' + weight: 30 + url: forums + - parent: 'Forums' + name: 'Research Software Community Leadership Forum' + url: forums/community-leadership-forum + weight: 31 + - parent: 'Forums' + name: 'Research Software Funders Forum' + url: forums/funders-forum + weight: 32 + - parent: 'Forums' + name: 'Research Software Infrastructure Forum' + url: forums/rsi-forum + weight: 33 + - parent: 'Forums' + name: 'Research Software Policy Forum' + url: forums/rsp-forum + weight: 34 + - parent: 'Forums' + name: 'Metascience and Research Software Forum' + url: forums/mars-forum + weight: 35 + - parent: 'Forums' + name: 'Publishing Research Software Forum' + url: forums/pubsoft-forum + weight: 36 + - parent: 'Forums' + name: 'Skills and Training for Research Software Forum' + url: forums/stars-forum + weight: 37 + - parent: 'Forums' + name: 'ADORE.software Secretariat' + url: https://adore.software + weight: 38 + - parent: 'Forums' + name: 'International Council of RSE Associations' + url: https://researchsoftware.org/council.html + weight: 39 + + - name: 'Resources' + weight: 40 + url: resource + - parent: 'Resources' + name: 'ReSA Resources' + url: resource/resa-resources + weight: 10 + - parent: 'Resources' + name: 'Guidelines' + url: resource/guidelines + weight: 20 + - parent: 'Resources' + name: 'Funding Opportunities' + url: resource/funding-opportunities + weight: 30 + - parent: 'Resources' + name: 'Software Policies' + url: resource/software-policies + weight: 40 + - parent: 'Resources' + name: 'ADORE.software Declaration' + url: https://adore.software + weight: 50 + - parent: 'Resources' + name: 'Research Software Engineers (RSEs)' + url: resource/research-software-engineers + weight: 60 + + - name: 'News' + url: news + weight: 50 + - name: 'Events' + url: events + weight: 60 + - parent: 'Events' + name: 'Current Events' + url: events/events-current + weight: 61 + - parent: 'Events' + name: 'ReSA Community Calls' + url: events/community-calls + weight: 62 + - name: 'Blog' + url: blog + weight: 70 + - name: "" + url: https://github.com/researchsoft/website + weight: 80 + - name: "" + url: mailto:contact@researchsoft.org + weight: 90 + - name: "" + url: https://researchsoft.slack.com/ + weight: 100 + - name: "" + url: https://www.linkedin.com/company/research-software-alliance/ + weight: 110 + - name: "" + url: https://fosstodon.org/@researchsoft + weight: 120 + - name: "" + url: https://bsky.app/profile/researchsoftware.bsky.social + weight: 130 + - name: "" + url: /index.xml + weight: 140 diff --git a/config/_default/module.yaml b/config/_default/module.yaml new file mode 100644 index 00000000..e9c4255e --- /dev/null +++ b/config/_default/module.yaml @@ -0,0 +1,10 @@ +############################ +## HUGO MODULES +## Install or uninstall themes and plugins here. +## Docs: https://gohugo.io/hugo-modules/ +############################ + +imports: + - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-decap-cms + - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify + - path: github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5 diff --git a/config/_default/params.yaml b/config/_default/params.yaml new file mode 100644 index 00000000..f8fa4b6c --- /dev/null +++ b/config/_default/params.yaml @@ -0,0 +1,138 @@ +# SITE SETUP +# Guide: https://docs.hugoblox.com/tutorial/ +# Documentation: https://docs.hugoblox.com/ +# This file is formatted using YAML syntax - learn more at https://learnxinyminutes.com/docs/yaml/ + +# Appearance + +appearance: + theme_day: resa + theme_night: + font: native + font_size: XS + +# SEO + +marketing: + seo: + site_type: Organization + local_business_type: '' + org_name: '' + description: 'Our vision: Research software and those who develop and maintain it are recognised and valued as fundamental and vital to research worldwide.' + twitter: '' + analytics: + google_analytics: '' + baidu_tongji: '' + google_tag_manager: '' + microsoft_clarity: '' + verification: + google: '' + baidu: '' + +# Site header + +header: + navbar: + enable: true + align: r + show_logo: true + show_language: false + show_day_night: true + show_search: true + highlight_active_link: false + +# Site footer + +footer: + copyright: + notice: ' +
+
+ Β© {year} Research Software Alliance. This work is + licensed under CC BY 4.0 International. +
+
' + license: + enable: false + allow_derivatives: false + share_alike: false + allow_commercial: false + +# Localization + +locale: + date_format: 'Jan 2, 2006' + time_format: '3:04 PM' + address_format: en-us + +# Site features + +features: + syntax_highlighter: + enable: false + extra_languages: + - r + - latex + math: + enable: false + privacy_pack: + enable: false + repository: + url: 'https://github.com/researchsoft/website' + content_dir: content + branch: main + avatar: + gravatar: false + shape: circle + comment: + provider: '' + disqus: + shortname: '' + show_count: true + commento: + url: '' + giscus: + repo: '' + repo_id: '' + category: '' + category_id: '' + search: + provider: wowchemy + algolia: + app_id: '' + api_key: '' + index_name: '' + show_logo: false + map: + provider: 'mapnik' + api_key: '' + zoom: 15 + +# Extensions + +extensions: + decap_cms: + branch: main + local_backend: false + academicons: + enable: true + +# Citation style + +publications: + date_format: January 2006 + citation_style: apa + +social: + - icon: linkedin + icon_pack: fab + url: "https://www.linkedin.com/in/your-profile/" + title: "LinkedIn" + - icon: github + icon_pack: fab + url: "https://github.com/your-org" + title: "GitHub" + - icon: twitter + icon_pack: fab + url: "https://twitter.com/your-handle" + title: "Twitter" diff --git a/content/2022-mapping/content.md b/content/2022-mapping/content.md deleted file mode 100644 index 955003d7..00000000 --- a/content/2022-mapping/content.md +++ /dev/null @@ -1,20 +0,0 @@ -+++ -fragment = "content" -date = "2021-12-05" -weight = 20 -background = "white" - -title = "Understanding the research software landscape in the Global South" -#subtitle = "" -+++ - - -**Are you familiar with the research software initiatives of a geographic region in the Global South, and interested in a few hours of paid work to share that knowledge?** - -ReSA is updating its [mapping](https://zenodo.org/record/3699950) of the research software community and is seeking short-term contractors who can assist with profiling countries in the Global South. This could include listing of research software initiatives, events, funders, and a short contextual narrative. It is anticipated that this work could be undertaken completely via online research. Contractors will be remunerated up to USD$750 to complete approximately 2 days work by mid-February 2022. Contractors will ideally be located in the geographic area that they will review, or have previously resided there. - -If this sounds like you, then **fill out this short [expression of interest](https://airtable.com/shrh1QhvV5REOfiIl) by 5 January 2022**. Expressions of interests are welcome from all sections of the community regardless of gender, ethnicity, disability, sexual orientation, and transgender status. As outlined in the ReSA [Code of Conduct](https://www.researchsoft.org/code-of-conduct/), ReSA welcomes and encourages participation in our community by people of all backgrounds and identities. Applicants must be able to enter into a contract with ReSA’s fiscal sponsor, [Code for Science and Society](https://codeforscience.org/). Please note that unfortunately applications cannot be accepted from the following countries due to restrictions on contracting arrangements: Cuba, Iran, Syria and North Korea. - -Applications will be reviewed on a rolling basis, with an aim to fill positions from mid-December 2021 until mid-January 2022. If you have any questions then please contact the ReSA Director, [Michelle Barker](mailto:info@researchsoft.org). - -Context: ReSA's vision is that research software is recognised and valued as a fundamental and vital component of research worldwide. A wide range of research software organisations and programs exist internationally to address the varied challenges in software productivity, quality, reproducibility, and sustainability. As detailed in the [Strategic Plan](https://www.researchsoft.org/documents/Strategic_Plan_2021-23.pdf), ReSA aims to coordinate across these efforts to leverage investments, to achieve the shared long-term goal of research software valued as a fundamental and vital component of research worldwide. You have the opportunity to [comment](https://github.com/researchsoft/website/discussions/5) on this Strategic Plan. diff --git a/content/2022-mapping/index.md b/content/2022-mapping/index.md deleted file mode 100644 index 9b2840a2..00000000 --- a/content/2022-mapping/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Understanding the research software landscape in the Global South" -date = "2021-12-05" -+++ diff --git a/content/_global/config.md b/content/_global/config.md deleted file mode 100644 index e8f79967..00000000 --- a/content/_global/config.md +++ /dev/null @@ -1,42 +0,0 @@ -+++ -fragment = "config" - -[[config]] - type = "js" - block = true # Default is false # If set to true, would inject the code to the tag. - html = """ - - - - """ - -[[config]] - type = "js" - block = true # will add to the head - html = """ - - - - """ - -[[config]] - type = "js" - block = false # will add to the body - html = """ - - - - """ - -+++ diff --git a/content/_global/copyright.md b/content/_global/copyright.md deleted file mode 100644 index 50236fa8..00000000 --- a/content/_global/copyright.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -fragment = "copyright" -#disabled = true -date = "2021-03-23" -weight = 1250 -background = "dark" - -copyright = "" # default: Copyright $Year .Site.params.name -attribution = false # enable attribution by setting it to true -+++ diff --git a/content/_global/footer.md b/content/_global/footer.md deleted file mode 100644 index 81eb747a..00000000 --- a/content/_global/footer.md +++ /dev/null @@ -1,12 +0,0 @@ -+++ -fragment = "footer" -#disabled = true -date = "2016-09-07" -weight = 1200 -background = "white" - -[asset] - image = "resa-logo.svg" - text = "ReSA logo" -+++ - diff --git a/content/_global/index.md b/content/_global/index.md deleted file mode 100644 index 2ae2541c..00000000 --- a/content/_global/index.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -headless = true -+++ \ No newline at end of file diff --git a/content/_global/nav.md b/content/_global/nav.md deleted file mode 100644 index 6d226a87..00000000 --- a/content/_global/nav.md +++ /dev/null @@ -1,26 +0,0 @@ -+++ -fragment = "nav" -#disabled = true -date = "2020-07-20" -weight = 0 -background = "light" -search = false -sticky = true - -[breadcrumb] - display = false # Default value is false - #level = 0 # Default is 1 - background = "light" - -# Branding options -[asset] - image = "resa-logo.svg" - text = "ReSA logo" - -[repo_button] - url = "https://www.linkedin.com/company/research-software-alliance/" - text = "LinkedIn" # default: "Star" - title = "LinkedIn" - icon = "fab fa-linkedin" # defaults: "fab fa-github" - -+++ diff --git a/content/_index.md b/content/_index.md index cd2e55c5..0f662242 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,5 +1,190 @@ -+++ -date = "2020-07-20" -title = "ReSA" -description = "The Research Software Alliance" -+++ \ No newline at end of file +--- +# Leave the homepage title empty to use the site title +title: +date: 2022-10-24 +type: landing +layout: "default" + +sections: + - block: markdown + content: + title: + text: | +

+ +

+ + Our vision: Research software and those who develop and maintain it are recognised and valued as fundamental and vital to research worldwide + {style="color: white; font-size: 2rem; text-align: center;"} + +
+ + Learn more + +
+ + + + design: + background: + image: + filename: main-hero_bottom_half.png + size: cover + position: bottom + parallax: false + text_color_light: true + spacing: + height: "30vh" + padding: ["2rem", "2rem"] + + + - block: markdown + content: + title: "Our Mission" + subtitle: "To advance the research software ecosystem by collaborating with decision makers and key influencers." + design: + spacing: + padding: ["5rem", "1rem"] + width: "narrrow" + background: + color: "#ffffff" + text_color_light: false + + - block: markdown + content: + title: Join ReSA + subtitle: + text: | +
+
+ You can become involved by: + + - Joining [task forces](taskforces) focused on specific activities + - Receiving updates through our regular [newsletter](news) + - Encouraging your organisation to become an [Organisational Member](about/membership), support a [task force](taskforces/tf-support), or make a [donation](about/donate) + - Helping to raise awareness of the importance of software in research through use of [ReSA resources](resource/resa-resources) + - Connecting with other community members through our [Linked In](https://www.linkedin.com/company/research-software-alliance/) or at our [events](events/resa-events) + - Joining the ReSA [Slack](https://researchsoft.slack.com/join/shared_invite/zt-1flmrglww-SoWjAK_5TJyqLU_~Jx697w#/shared-invite/email) for decision-makers and key influencers to share what's happening in the community + - Attending our [Research Software Community Leaders Forum](community-forum) + - Providing information on [new funding calls](https://forms.gle/r4Jw4swUd1SXigZc9) to the [Research Software Funding Opportunities](resource/funding-opportunities) + - [Contributing](about/contact) [resources](resource/resa-resources) and [guidelines](resource/guidelines); ideas for [task forces](taskforces), [events](events/resa-events) and [news](news); or if you have other ideas for ReSA then [let us know](about/contact). + + We look forward to welcoming you! +
+
+ design: + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: ReSA Themes + subtitle: '' + text: | +
+
+
+
+ +

People

+

Enhance social infrastructure for individuals and communities to improve software practices

+
+
+ +

Infrastructure

+

Identify and promote needed infrastructure

+
+
+ +

Policy

+

Encourage and support software recognition

+
+
+
+
+ design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + + - block: markdown + content: + title: Software Matters + text: | +
+
+ + Research software is recognised as critical to research outcomes. As early as 2014, a [UK survey](https://zenodo.org/records/14809) of 1,000 randomly chosen researchers showed that more than 90% of researchers acknowledged software as being important for their own research, and about 70% of researchers said that their research would not be possible without software. A study of [Nature papers from Jan-March 2016](https://ieeexplore.ieee.org/document/8109183) reveals that β€œ32 of the 40 papers examined mention software, and the 32 papers contain 211 mentions of distinct pieces of software, for an average of 6.5 mentions per paper.” [2]. + + Research software is also critical in artificial intelligence (AI)-driven research, and the technological infrastructure to support AI acceleration must include research software and its personnel. Read our [position paper](https://doi.org/10.5281/zenodo.13350747) on this vital part of AI infrastructure, which includes recommendations for stakeholders on how to consider research software in their AI goals. + + + | 90% | 70% | 6.5 avg| + |:---:|:---:|:---:| + |software important for own research|own research not possible without software| distinct software mentions per paper| +
+
+ design: + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: +
+
+ + Without data it’s difficult to validate results. But without code, we waste the opportunity to advance science. + +
+
+ subtitle: + text: +

Neil Chue Hong, Director, Software Sustainability Institute, University of Edinburgh, UK

+ + design: + background: + color: "#f98c01" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: "Connect with us" + subtitle: "" + text: | +

+ + + + + + + + + + + + + + + + + + + + + +

+ design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] +--- diff --git a/content/_index/10-research-software-alliance/index.md b/content/_index/10-research-software-alliance/index.md deleted file mode 100644 index 93a05183..00000000 --- a/content/_index/10-research-software-alliance/index.md +++ /dev/null @@ -1,28 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2020-07-24" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Research Software Alliance" -subtitle = "Our vision: Research software and those who develop and maintain it are recognised and valued as fundamental and vital to research worldwide" - -[header] - image = "main-hero.png" - text = "header people working together" - -[asset] - image = "resa-logo-inverted.svg" - width = "750px" # optional - will default to image width - #height = "150px" # optional - will default to image height - text = "ReSA logo" - -[[buttons]] - text = "Learn more" - url = "./about-resa/" - color = "light" # primary, secondary, success, danger, warning, info, light, dark, link - default: primary - -+++ diff --git a/content/_index/20-our-mission.md b/content/_index/20-our-mission.md deleted file mode 100644 index 1d7951f1..00000000 --- a/content/_index/20-our-mission.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -date = "2020-07-24" -fragment = "header" -weight = 20 - -background = "light" -title = "Our mission" -subtitle = "To advance the research software ecosystem by collaborating with decision makers and key influencers." -#title_align = "center" # Default is center, can be left, right or center -+++ diff --git a/content/_index/25-join-resa.md b/content/_index/25-join-resa.md deleted file mode 100644 index c87b9b6c..00000000 --- a/content/_index/25-join-resa.md +++ /dev/null @@ -1,22 +0,0 @@ -+++ -date = "2022-01-18" -fragment = "content" -weight = 25 -background = "light" -title = "Join ReSA" -#title_align = "center" # Default is center, can be left, right or center -+++ - -You can become involved by: - - - Joining [task forces](./taskforces/) focused on specific activities - - Receiving updates through our regular [newsletter](./news/) - - Encouraging your organisation to become an [Organisational Member](https://www.researchsoft.org/membership/), [support a task force](https://www.researchsoft.org/tf-support/), or make a [donation](https://www.researchsoft.org/donate/) - - Helping to raise awareness of the importance of software in research through use of [ReSA resources](./resa-resources/) - - Connecting with other community members through our [Linked In](https://www.linkedin.com/company/research-software-alliance/) or at our [events](./events/) - - Joining the ReSA [Slack](https://researchsoft.slack.com/join/shared_invite/zt-1flmrglww-SoWjAK_5TJyqLU_~Jx697w#/shared-invite/email) for decision-makers and key influencers to share what's happening in the community - - Attending our [Research Software Community Leaders Forum](https://www.researchsoft.org/community-forum/) - - Providing information on [new funding calls](https://forms.gle/r4Jw4swUd1SXigZc9) to the [Research Software Funding Opportunities](https://www.researchsoft.org/funding-opportunities/) - - [Contributing](./contact/) [resources](https://www.researchsoft.org/resa-resources/) and [guidelines](https://www.researchsoft.org/guidelines/); ideas for [task forces](https://www.researchsoft.org/taskforces/), [events](https://www.researchsoft.org/events/) and [news](https://www.researchsoft.org/news/); or if you have other ideas for ReSA then [let us know](./contact/). - -We look forward to welcoming you! diff --git a/content/_index/30-themes/index.md b/content/_index/30-themes/index.md deleted file mode 100644 index ac2919af..00000000 --- a/content/_index/30-themes/index.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -date = "2020-07-24" -fragment = "portfolio" -weight = 30 -background = "light" - -title = "ReSA themes" - -#height = "110px" # Default is auto -+++ diff --git a/content/_index/30-themes/infrastructure.md b/content/_index/30-themes/infrastructure.md deleted file mode 100644 index 7da5fdd7..00000000 --- a/content/_index/30-themes/infrastructure.md +++ /dev/null @@ -1,18 +0,0 @@ -+++ -weight = 20 -title = "Infrastructure" -subtitle = "Identify and promote needed infrastructure" - -[asset] - image = "programmer-hands-500-380.png" - text = "programmer hands" -+++ - -[ReSA task forces](https://www.researchsoft.org/taskforces/) and activities with **infrastructure** impacts include: - -* Co-authorship of [position paper](https://doi.org/10.5281/zenodo.13350747) on criticality of research software in AI-driven research. -* Leadership of [FAIR for Research Software Working Group (FAIR4RS WG)](https://www.rd-alliance.org/groups/fair-research-software-fair4rs-wg/activity/) with the [Research Data Alliance (RDA)](https://www.rd-alliance.org/) and [FORCE11](https://www.force11.org/), to develop and guide adoption of community-endorsed FAIR principles for research software. -* Co-chairing of [Research Software Infrastructure Forum](https://www.researchsoft.org/rsi-forum/) to consider how to individually and collectively address common challenges. -* Coordination of [FAIR for Research Software Roadmap](https://www.researchsoft.org/taskforces/) to guide strategic planning and investment of implementation of the FAIR principles for research software across the sector. Focus areas includes FAIR for research software [metrics](https://docs.google.com/document/d/1BpzecVx4ZvSNfHD-UHhofZVdA6qiP_ENrmozmiq9zY4/edit). -* [How Can Open Source Program Offices (OSPOs) Support Research Software?](https://www.researchsoft.org/blog/2023-06/) is a ReSA blog post that explores the role of OSPOs in supporting open-source research software in universities, governments, and civic institutions. - diff --git a/content/_index/30-themes/people.md b/content/_index/30-themes/people.md deleted file mode 100644 index 94f1e9fd..00000000 --- a/content/_index/30-themes/people.md +++ /dev/null @@ -1,18 +0,0 @@ -+++ -weight = 10 -title = "People" -subtitle = "Enhance social infrastructure for individuals and communities to improve software practices" - -[asset] - image = "young-people-500-380.png" - text = "young people" -+++ - -[ReSA community consultations](https://www.researchsoft.org/taskforces/) with **people** impacts include: - - * Co-hosting an African community of practice around research software with [Talarify](https://www.talarify.co.za/)in South Africa ([report](https://doi.org/10.5281/zenodo.7980634) and [blog post](https://www.talarify.co.za/2023/05/29/driving-sustainable-research-software-and-systems-insights-from-the-first-research-software-indaba-in-africa/)). - * Establishment of the ReSA [Community Leaders Forum (CLF)](https://www.researchsoft.org/community-forum) for decision makers and key influencers in the global research software community. - * Work of ReSA's [Community Managers](https://www.researchsoft.org/people/) in Africa and Asia. - * [Vive la differΓ©nce - research software engineers](https://www.researchsoft.org/events/2022-04/), a hybrid Lorentz Center workshop focused on broadening the research software community, March-May 2022. - * The [People Roadmap](https://www.researchsoft.org/documents/people-roadmap.pdf) community consultation facilitated identification and prioritisation of the major issues related to people (or personnel) challenges faced by the research software community, including research software engineers. - * The [software landscape analysis taskforce](http://doi.org/10.5281/zenodo.3699950) analysed the research software landscape to identify different communities, stakeholders and topics of interest. diff --git a/content/_index/30-themes/policy.md b/content/_index/30-themes/policy.md deleted file mode 100644 index 21c6c978..00000000 --- a/content/_index/30-themes/policy.md +++ /dev/null @@ -1,20 +0,0 @@ -+++ -weight = 30 -title = "Policy" -subtitle = "Encourage and support software recognition" - -[asset] - image = "writing-828911_1920.jpg" - text = "text and writing" -+++ - -[ReSA activities](https://www.researchsoft.org/taskforces/) with **policy** impacts include: - -* Establishment of [Research Software Funders Forum](https://www.researchsoft.org/funders-forum). -* [Amsterdam Declaration on Funding Research Software Sustainability (ADORE.software)](https://adore.software/) aims to raise awareness of the role of funding practice in the sustainability of research software, and to improve that practice. -* The joint ReSA [task force](https://www.researchsoft.org/taskforces/) and [FORCE11](https://force11.org/) working group on Code Availability is working towards greater alignment on policy and other related actions for code availability. -* [Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/activity/) is a joint working group with the [Research Data Alliance (RDA)](https://www.rd-alliance.org/) to help build our collection of [institutional policies](https://www.researchsoft.org/software-policies/) and consider how to better share these with interested stakeholders. -* Development of research software sharing guidelines for policy makers, funders, publishers and researchers in the [Research Data Alliance COVID-19 Guidelines and Recommendations](https://www.rd-alliance.org/groups/rda-covid19-software/outputs/?output=188084). -* Supporting the inclusion of software in the [OECD Recommendation on Access to Research Data from Public Funding](https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0347), which is soft law for OECD member states. -* Engagement with the [UNESCO Recommendation on Open Science](https://en.unesco.org/science-sustainable-future/open-science/recommendation) to include research software elements. -* Analysis of [evidence for the importance of research software](https://www.researchsoft.org/taskforces/) to support policy discussions and provide information for sharing with key influencers. diff --git a/content/_index/50-software-matters.md b/content/_index/50-software-matters.md deleted file mode 100644 index 736683bf..00000000 --- a/content/_index/50-software-matters.md +++ /dev/null @@ -1,14 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2020-07-21" -weight = 50 -#background = "" - -title = "Software matters" -#subtitle = "" -+++ - -Research software is recognised as [critical](https://doi.org/10.1038/s43588-024-00651-2) to research outcomes. As early as 2014, a [UK survey](https://zenodo.org/records/14809) of 1,000 randomly chosen researchers showed that more than 90% of researchers acknowledged software as being important for their own research, and about 70% of researchers said that their research would not be possible without software. A [study of Nature papers from Jan-March 2016](https://ieeexplore.ieee.org/document/8109183) reveals that β€œ32 of the 40 papers examined mention software, and the 32 papers contain 211 mentions of distinct pieces of software, for an average of 6.5 mentions per paper.” [2]. - -Research software is also critical in artificial intelligence (AI)-driven research, and the technological infrastructure to support AI acceleration must include research software and its personnel. Read our [position paper](https://doi.org/10.5281/zenodo.13350747) on this vital part of AI infrastructure, which includes recommendations for stakeholders on how to consider research software in their AI goals. diff --git a/content/_index/60-stats.md b/content/_index/60-stats.md deleted file mode 100644 index 182fb000..00000000 --- a/content/_index/60-stats.md +++ /dev/null @@ -1,33 +0,0 @@ -+++ -fragment = "table" -disabled = false -date = "2020-07-21" -weight = 60 -#background = "" - -title = "" -#subtitle = "" - - -[header] - [[header.values]] - text = "90%" - size="20" - - [[header.values]] - text = "70%" - - [[header.values]] - text = "6.5 avg" - -[[rows]] - [[rows.values]] - text = "software important for own research" - - [[rows.values]] - text = "own research not possible without software" - - [[rows.values]] - text = "distinct software mentions per paper" - -+++ diff --git a/content/_index/70-neil-chue-hong-quote.md b/content/_index/70-neil-chue-hong-quote.md deleted file mode 100644 index 6c10d19f..00000000 --- a/content/_index/70-neil-chue-hong-quote.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "buttons" -#disabled = false -date = "2020-07-21" -weight = 70 -background = "secondary" - -title = "Without data it’s difficult to validate results. But without code, we waste the opportunity to advance science." -#subtitle = "" - -[[buttons]] - text = "Neil Chue Hong, Director, Software Sustainability Institute, University of Edinburgh, UK" - url = "https://twitter.com/npch/status/1258388356431478784" - color = "link" -+++ - diff --git a/content/_index/index.md b/content/_index/index.md deleted file mode 100644 index 2ae2541c..00000000 --- a/content/_index/index.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -headless = true -+++ \ No newline at end of file diff --git a/content/about-resa/10-about-resa-header/index.md b/content/about-resa/10-about-resa-header/index.md deleted file mode 100644 index 1993eb09..00000000 --- a/content/about-resa/10-about-resa-header/index.md +++ /dev/null @@ -1,15 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2020-07-24" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "About ReSA" - -[header] - image = "main-hero.png" - text = "main character" -+++ diff --git a/content/about-resa/20-content.md b/content/about-resa/20-content.md deleted file mode 100644 index 359ee9cc..00000000 --- a/content/about-resa/20-content.md +++ /dev/null @@ -1,20 +0,0 @@ -+++ -fragment = "content" -#disabled = true -date = "2020-07-21" -weight = 20 -background = "white" - -+++ - -The vision of the Research Software Alliance (ReSA) is that research software and those who develop and maintain it are recognised and valued as fundamental and vital to research worldwide. - -A [wide range](https://arxiv.org/abs/1811.08473) of research software organisations and programs exist internationally to address the varied challenges in -software productivity, quality, reproducibility, and sustainability. ReSA aims to coordinate across these efforts to leverage investments, to achieve shared goals. The [ReSA Strategic Plan](https://doi.org/10.5281/zenodo.15444952) provides details. The [ReSA engagement plan](https://doi.org/10.5281/zenodo.7714004) contains more information on how community engagement occurs. Also available is our [2024 Community Report](https://doi.org/10.5281/zenodo.15264853) and [overview of ReSA](https://doi.org/10.54900/zwm7q-vet94). - - -ReSA is a fiscally sponsored project of [Code for Science & Society](https://www.codeforsociety.org/) and led by the ReSA [Steering Committee](https://www.researchsoft.org/people/). - -Members of the ReSA community are expected to adhere to the ReSA [Code of Conduct](https://www.researchsoft.org/code-of-conduct/). - -**To cite our organisation** please refer to [The Research Software Alliance (ReSA)](https://upstream.force11.org/the-research-software-alliance-resa/), by Daniel S. Katz and Michelle Barker, 2023, [doi.org/10.54900/zwm7q-vet94](https://doi.org/10.54900/zwm7q-vet94). diff --git a/content/about-resa/40-why-resa.md b/content/about-resa/40-why-resa.md deleted file mode 100644 index d58f4e69..00000000 --- a/content/about-resa/40-why-resa.md +++ /dev/null @@ -1,17 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2020-07-21" -weight = 40 -background = "white" - -title = "Why ReSA?" -#subtitle = "" - -+++ - -[Software is pervasive in modern research](https://zenodo.org/record/3884311#.YeV3C1hBzJw), enabling the generation, analysis and/or presentation of research outputs. Research software is a key driver of innovation and the economy. ReSA focuses on software that is developed to serve a research purpose, rather than the standard software that some researchers also use for research purposes. - -While software has started to be recognised internationally as a key part of facilitating trusted, reproducible research outputs and open science, recognition of research software as a valuable research input and output has lagged behind that of research data. AI-driven research is also [dependent on software](https://doi.org/10.5281/zenodo.13350747), although it is not always adequately understood that data preparation and model training are performed by software, and that models are implemented in software. - -[Significant effort](https://www.nature.com/articles/s43588-024-00651-2) is still needed to influence culture change towards research software across a broad spectrum of [stakeholders](https://www.researchsoft.org/stakeholders/), including researchers, institutions, funders, and publishers, and to develop and promote standards for developing research software that meets the needs of reliable, reproducible, and reusable research. diff --git a/content/about-resa/42-RS-definitions.md b/content/about-resa/42-RS-definitions.md deleted file mode 100644 index 94dd68a9..00000000 --- a/content/about-resa/42-RS-definitions.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "content" -date = "2023-04-25" -weight = 42 -background = "white" - -title = "" -+++ - -Research software is [defined](https://doi.org/10.15497/RDA00068) by Barker et al (2022) in the [FAIR for Research Software Principles](https://www.nature.com/articles/s41597-022-01710-x) as including _β€œsource code files, algorithms, scripts, computational workflows and executables that were created during the research process or for a research purpose. Software components (e.g., operating systems, libraries, dependencies, packages, scripts, etc.) that are used for research but were not created during or with a clear research intent should be considered software in research and not research software. This differentiation may vary between disciplines."_ - -The [roles of research software](https://doi.org/10.54900/xdh2x-kj281) have also been described by Rob van Nieuwpoort and Daniel S. Katz (2024) as follows: - -
- Research software roles -
diff --git a/content/about-resa/45-financials.md b/content/about-resa/45-financials.md deleted file mode 100644 index 2a3ee2bf..00000000 --- a/content/about-resa/45-financials.md +++ /dev/null @@ -1,19 +0,0 @@ -+++ -fragment = "content" -date = "2022-08-12" -weight = 45 -background = "white" - -title = "Financial information" -+++ - -ReSA is supported by the community through: -* [Organisational Members](https://www.researchsoft.org/membership/) -* Project grants -* Founding Members -* [Task force support](https://www.researchsoft.org/tf-support/) -* [Donations](https://www.researchsoft.org/donate/) - -ReSA’s operations are supported through a combination of financial and in-kind contributions from Founding Members, Organisational Members, and project grants. These resources primarily sustain a part-time Director and a part-time Program Manager, who lead the ReSA community and facilitate its activities. - -An [overview](https://docs.google.com/spreadsheets/d/1u00bPi5jIeI_iO5AfaBA97jxdLTgQW5rWwGkGI7RI0M/edit#gid=0) of ReSA income and expenditures is available for review. Our grants are also available on [Open Grants](https://www.ogrants.org/). diff --git a/content/about-resa/50-fm.md b/content/about-resa/50-fm.md deleted file mode 100644 index 83b9255a..00000000 --- a/content/about-resa/50-fm.md +++ /dev/null @@ -1,13 +0,0 @@ -+++ -fragment = "content" -date = "2022-02-17" -weight = 50 -background = "white" - -title = "Founding Members" -+++ - -In 2022 ReSA announced six Founding Members. Founding Members express their deep commitment to the ReSA vision that research software -and those who develop and maintain it are recognised and valued as fundamental and vital to research worldwide. To do this, they provide -resources needed to support ReSA in its aim to bring research software communities together to collaborate on the advancement of the -research software ecosystem. diff --git a/content/about-resa/70-founding-members/alliance.md b/content/about-resa/70-founding-members/alliance.md deleted file mode 100644 index 41305c28..00000000 --- a/content/about-resa/70-founding-members/alliance.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Alliance.png" - url = "https://alliancecan.ca/" - text = "Digital Research Alliance of Canada" -+++ diff --git a/content/about-resa/70-founding-members/ardc.md b/content/about-resa/70-founding-members/ardc.md deleted file mode 100644 index ec9ec982..00000000 --- a/content/about-resa/70-founding-members/ardc.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "ARDC_logo_RGB.png" - url = "https://ardc.edu.au/" - text = "ARDC logo" -+++ diff --git a/content/about-resa/70-founding-members/index.md b/content/about-resa/70-founding-members/index.md deleted file mode 100644 index c012af5b..00000000 --- a/content/about-resa/70-founding-members/index.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -fragment = "items" -date = "2022-02-17" -weight = 70 -background = "white" - -title = "" -+++ diff --git a/content/about-resa/70-founding-members/ncsa.md b/content/about-resa/70-founding-members/ncsa.md deleted file mode 100644 index 2ca4d767..00000000 --- a/content/about-resa/70-founding-members/ncsa.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "NCSA.png" - url = "https://www.ncsa.illinois.edu/" - text = "NCSA logo" -+++ diff --git a/content/about-resa/70-founding-members/nesc.md b/content/about-resa/70-founding-members/nesc.md deleted file mode 100644 index a1052a91..00000000 --- a/content/about-resa/70-founding-members/nesc.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "nesc.png" - url = "https://www.esciencecenter.nl/" - text = "Netherlands eScience Center logo" -+++ diff --git a/content/about-resa/70-founding-members/sloan.md b/content/about-resa/70-founding-members/sloan.md deleted file mode 100644 index 11498ccf..00000000 --- a/content/about-resa/70-founding-members/sloan.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Sloan-logo.png" - url = "https://sloan.org/" - text = "Sloan logo" -+++ diff --git a/content/about-resa/70-founding-members/ssi.md b/content/about-resa/70-founding-members/ssi.md deleted file mode 100644 index 0002168c..00000000 --- a/content/about-resa/70-founding-members/ssi.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "ssi_logo_with_name-small2.png" - url = "https://www.software.ac.uk/" - text = "SSI logo" -+++ diff --git a/content/about-resa/75-om.md b/content/about-resa/75-om.md deleted file mode 100644 index 968f5906..00000000 --- a/content/about-resa/75-om.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -fragment = "content" -date = "2022-04-19" -weight = 75 -background = "secondary" - -title = "Organisational Members" -+++ - diff --git a/content/about-resa/75-org-members/Astera.md b/content/about-resa/75-org-members/Astera.md deleted file mode 100644 index 48881279..00000000 --- a/content/about-resa/75-org-members/Astera.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "AsteraLogo.png" - url = "https://astera.org/" - text = "Astera logo" -+++ - diff --git a/content/about-resa/75-org-members/CZI.md b/content/about-resa/75-org-members/CZI.md deleted file mode 100644 index 2d223801..00000000 --- a/content/about-resa/75-org-members/CZI.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "CZI_Logo.jpg" - url = "https://chanzuckerberg.com/" - text = "Chan Zuckerberg Initiative" - -+++ diff --git a/content/about-resa/75-org-members/NWO.md b/content/about-resa/75-org-members/NWO.md deleted file mode 100644 index 71f99128..00000000 --- a/content/about-resa/75-org-members/NWO.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "NWO-logo.jpeg" - url = "https://www.nwo.nl/en" - text = "NWO logo" -+++ diff --git a/content/about-resa/75-org-members/URKI.md b/content/about-resa/75-org-members/URKI.md deleted file mode 100644 index fe9f28c6..00000000 --- a/content/about-resa/75-org-members/URKI.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "UKRI logo.png" - url = "https://www.ukri.org/" - text = "UKRI logo" -+++ diff --git a/content/about-resa/75-org-members/US-RSE.md b/content/about-resa/75-org-members/US-RSE.md deleted file mode 100644 index 3660f32a..00000000 --- a/content/about-resa/75-org-members/US-RSE.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "USRSE logo.png" - url = "https://us-rse.org/" - text = "US-RSE logo" -+++ - diff --git a/content/about-resa/75-org-members/Volkswagen.md b/content/about-resa/75-org-members/Volkswagen.md deleted file mode 100644 index bb57ba0d..00000000 --- a/content/about-resa/75-org-members/Volkswagen.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Volkswagen.jpg" - url = "https://www.volkswagenstiftung.de/en" - text = "Volkswagen Foundation logo" -+++ diff --git a/content/about-resa/75-org-members/alfredpsloan.md b/content/about-resa/75-org-members/alfredpsloan.md deleted file mode 100644 index 17b28621..00000000 --- a/content/about-resa/75-org-members/alfredpsloan.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Sloan-logo.png" - url = "https://sloan.org/" - text = "Alfred P. Sloan Foundation" - -+++ diff --git a/content/about-resa/75-org-members/ardc.md b/content/about-resa/75-org-members/ardc.md deleted file mode 100644 index c9e22e26..00000000 --- a/content/about-resa/75-org-members/ardc.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "ARDC_logo_RGB.png" - url = "https://ardc.edu.au/" - text = "ARDC logo" -+++ diff --git a/content/about-resa/75-org-members/asap.md b/content/about-resa/75-org-members/asap.md deleted file mode 100644 index b67117de..00000000 --- a/content/about-resa/75-org-members/asap.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "ASAP_FullColor.png" - url = "https://parkinsonsroadmap.org/#" - text = "ASAP" -+++ diff --git a/content/about-resa/75-org-members/dfg.md b/content/about-resa/75-org-members/dfg.md deleted file mode 100644 index 2b8b5657..00000000 --- a/content/about-resa/75-org-members/dfg.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "DFG_logo.jpg" - url = "https://www.dfg.de/en/index.jsp" - text = "German Research Foundation" -+++ diff --git a/content/about-resa/75-org-members/digitalresearchalliance.md b/content/about-resa/75-org-members/digitalresearchalliance.md deleted file mode 100644 index e4eafe88..00000000 --- a/content/about-resa/75-org-members/digitalresearchalliance.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Alliance.png" - url = "https://alliancecan.ca/" - text = "Digital Research Alliance of Canada" -+++ diff --git a/content/about-resa/75-org-members/index.md b/content/about-resa/75-org-members/index.md deleted file mode 100644 index 3f76ee0d..00000000 --- a/content/about-resa/75-org-members/index.md +++ /dev/null @@ -1,14 +0,0 @@ -+++ -fragment = "items" -date = "2022-03-06" -weight = 76 -background = "secondary" - -title = "" - -# Custom parameters for styling or use in layouts -[params] - custom_class = "items-section" # Optional: A custom class for styling the section -+++ - - diff --git a/content/about-resa/75-org-members/kavli.md b/content/about-resa/75-org-members/kavli.md deleted file mode 100644 index 21e6ca6a..00000000 --- a/content/about-resa/75-org-members/kavli.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "The_Kavli_Foundation_Logo_White_Red.png" - url = "https://www.kavlifoundation.org/" - text = "Kavli logo" -+++ diff --git a/content/about-resa/75-org-members/microsoft.md b/content/about-resa/75-org-members/microsoft.md deleted file mode 100644 index a8fcd89c..00000000 --- a/content/about-resa/75-org-members/microsoft.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Microsoft logo.png" - url = "https://www.microsoft.com/" - text = "Microsoft logo" -+++ - diff --git a/content/about-resa/75-org-members/ministere.md b/content/about-resa/75-org-members/ministere.md deleted file mode 100644 index f096b9d1..00000000 --- a/content/about-resa/75-org-members/ministere.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "1_MESR_RVB.jpg" - url = "https://www.ouvrirlascience.fr/the-committee-for-open-science/" - text = "French Committee for Open Science logo" -+++ diff --git a/content/about-resa/75-org-members/nasa.md b/content/about-resa/75-org-members/nasa.md deleted file mode 100644 index 9bbeb1a4..00000000 --- a/content/about-resa/75-org-members/nasa.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - url = "https://www.nih.gov" -+++ -## [NASA](https://www.nasa.gov) diff --git a/content/about-resa/75-org-members/national-nih.md b/content/about-resa/75-org-members/national-nih.md deleted file mode 100644 index b522da28..00000000 --- a/content/about-resa/75-org-members/national-nih.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - url = "https://www.nih.gov" -+++ -## [National Institutes of Health](https://www.nih.gov) diff --git a/content/about-resa/75-org-members/ncsa.md b/content/about-resa/75-org-members/ncsa.md deleted file mode 100644 index ce20ff19..00000000 --- a/content/about-resa/75-org-members/ncsa.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "NCSA.png" - text = "NCSA" - url = "https://www.ncsa.illinois.edu" -+++ diff --git a/content/about-resa/75-org-members/nesi.md b/content/about-resa/75-org-members/nesi.md deleted file mode 100644 index 39d6e16c..00000000 --- a/content/about-resa/75-org-members/nesi.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "NeSI.png" - url = "https://www.nesi.org.nz/" - text = "New Zealand eScience Infrastructure" -+++ diff --git a/content/about-resa/75-org-members/netherlands-escience.md b/content/about-resa/75-org-members/netherlands-escience.md deleted file mode 100644 index dbd94650..00000000 --- a/content/about-resa/75-org-members/netherlands-escience.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "nesc-transparent.png" - text = "Netherlands eScience Center" - url = "https://www.esciencecenter.nl/" -+++ diff --git a/content/about-resa/75-org-members/rsu.md b/content/about-resa/75-org-members/rsu.md deleted file mode 100644 index 5d404155..00000000 --- a/content/about-resa/75-org-members/rsu.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Stradini_logo_ENG_vert-RGB.jpg" - url = "https://www.rsu.lv/en/bioinformatics-group" - text = "RSU logo" -+++ diff --git a/content/about-resa/75-org-members/schmidt.md b/content/about-resa/75-org-members/schmidt.md deleted file mode 100644 index 0f22ff95..00000000 --- a/content/about-resa/75-org-members/schmidt.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "schmidtsciences_primary_color.png" - url = "https://www.schmidtsciences.org/" - text = "Schmidt Sciences logo" -+++ - diff --git a/content/about-resa/75-org-members/simons.md b/content/about-resa/75-org-members/simons.md deleted file mode 100644 index dada3e6a..00000000 --- a/content/about-resa/75-org-members/simons.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Simons.png" - url = "https://www.simonsfoundation.org/" - text = "Simons Foundation" -+++ diff --git a/content/about-resa/75-org-members/software-ssi.md b/content/about-resa/75-org-members/software-ssi.md deleted file mode 100644 index f2b3b614..00000000 --- a/content/about-resa/75-org-members/software-ssi.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "ssi_logo_with_name-small2.png" - text = "Software Sustainability Institute" - url = "https://www.software.ac.uk/" -+++ diff --git a/content/about-resa/75-org-members/wellcome.md b/content/about-resa/75-org-members/wellcome.md deleted file mode 100644 index 5ba4d7cd..00000000 --- a/content/about-resa/75-org-members/wellcome.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Wellcome_logo_Black.jpg" - url = "https://wellcome.org/" - text = "Wellcome logo" -+++ diff --git a/content/about-resa/77-org-members.index.md b/content/about-resa/77-org-members.index.md deleted file mode 100644 index 29cd196f..00000000 --- a/content/about-resa/77-org-members.index.md +++ /dev/null @@ -1,12 +0,0 @@ -+++ - -date = "2022-03-06" -weight = 77 -background_color = "#FFA500" - -title = "" - -# Custom parameters for styling or use in layouts -[params] - custom_class = "items-section" # Optional: A custom class for styling the section -+++ diff --git a/content/about-resa/80-sponsors/czi.md b/content/about-resa/80-sponsors/czi.md deleted file mode 100644 index 2d223801..00000000 --- a/content/about-resa/80-sponsors/czi.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "CZI_Logo.jpg" - url = "https://chanzuckerberg.com/" - text = "Chan Zuckerberg Initiative" - -+++ diff --git a/content/about-resa/80-sponsors/index.md b/content/about-resa/80-sponsors/index.md deleted file mode 100644 index f5f8646b..00000000 --- a/content/about-resa/80-sponsors/index.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -fragment = "items" -#disabled = false -date = "2020-08-31" -weight = 80 -background = "white" - -title = "Sponsors" -subtitle= "" -#title_align = "left" # Default is center, can be left, right or center -+++ \ No newline at end of file diff --git a/content/about-resa/80-sponsors/sloan.md b/content/about-resa/80-sponsors/sloan.md deleted file mode 100644 index 11498ccf..00000000 --- a/content/about-resa/80-sponsors/sloan.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Sloan-logo.png" - url = "https://sloan.org/" - text = "Sloan logo" -+++ diff --git a/content/about-resa/80-sponsors/ukri.md b/content/about-resa/80-sponsors/ukri.md deleted file mode 100644 index 779467f4..00000000 --- a/content/about-resa/80-sponsors/ukri.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "stfc+logo.png" - url = "https://stfc.ukri.org/" - text = "STFC logo" -+++ diff --git a/content/about-resa/80-sponsors/university-illinois.md b/content/about-resa/80-sponsors/university-illinois.md deleted file mode 100644 index 1dc82d63..00000000 --- a/content/about-resa/80-sponsors/university-illinois.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "illinois-logo-internal-collaboration.png" - url = "https://www.illinois.edu/" - text = "University of Illinois logo" -+++ diff --git a/content/about-resa/90-partners/10-rda.md b/content/about-resa/90-partners/10-rda.md deleted file mode 100644 index e71eb17c..00000000 --- a/content/about-resa/90-partners/10-rda.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -weight = 10 - -[asset] - image = "RDA_Logotype_Low.png" - url = "https://www.rd-alliance.org/" - text = "RDA logo" -+++ diff --git a/content/about-resa/90-partners/index.md b/content/about-resa/90-partners/index.md deleted file mode 100644 index b2d0865a..00000000 --- a/content/about-resa/90-partners/index.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -fragment = "items" -#disabled = false -date = "2020-08-31" -weight = 90 -background = "white" - -title = "Partners" -subtitle= "" -#title_align = "left" # Default is center, can be left, right or center -+++ \ No newline at end of file diff --git a/content/about-resa/95-past-sponsors/berkeley.md b/content/about-resa/95-past-sponsors/berkeley.md deleted file mode 100644 index cc57b53f..00000000 --- a/content/about-resa/95-past-sponsors/berkeley.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "UCBerkeley_wordmark_blue.png" - url = "https://www.berkeley.edu/" - text = "UC berkeley logo" -+++ diff --git a/content/about-resa/95-past-sponsors/carpentries.md b/content/about-resa/95-past-sponsors/carpentries.md deleted file mode 100644 index aa01cbb6..00000000 --- a/content/about-resa/95-past-sponsors/carpentries.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Carpentries.png" - url = "https://carpentries.org" - text = "The Carpentries" -+++ diff --git a/content/about-resa/95-past-sponsors/fordfoundation.md b/content/about-resa/95-past-sponsors/fordfoundation.md deleted file mode 100644 index cd23a91e..00000000 --- a/content/about-resa/95-past-sponsors/fordfoundation.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - url = "https://www.fordfoundation.org/" - text = "Ford Foundation" -+++ -## [Ford Foundation](https://www.fordfoundation.org/) diff --git a/content/about-resa/95-past-sponsors/index.md b/content/about-resa/95-past-sponsors/index.md deleted file mode 100644 index 94211e37..00000000 --- a/content/about-resa/95-past-sponsors/index.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -fragment = "items" -date = "2022-02-16" -weight = 95 -background = "white" - -title = "Past Sponsors" -+++ diff --git a/content/about-resa/95-past-sponsors/moore.md b/content/about-resa/95-past-sponsors/moore.md deleted file mode 100644 index 0af50ff2..00000000 --- a/content/about-resa/95-past-sponsors/moore.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -# weight = - -[asset] - image = "moore-logo-color-small.png" - url = "https://www.moore.org/" - text = "Moore foundation logo" -+++ diff --git a/content/about-resa/95-past-sponsors/rdc.md b/content/about-resa/95-past-sponsors/rdc.md deleted file mode 100644 index 62fd47c6..00000000 --- a/content/about-resa/95-past-sponsors/rdc.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -# weight = - -[asset] - image = "rdc-logo.png" - url = "https://www.rdc-drc.ca/" - text = "RDC DCR logo" -+++ diff --git a/content/about-resa/95-past-sponsors/stanford.md b/content/about-resa/95-past-sponsors/stanford.md deleted file mode 100644 index 71308c59..00000000 --- a/content/about-resa/95-past-sponsors/stanford.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "stanford-university-stacked.png" - url = "https://www.stanford.edu/" - text = "Stanford logo" -+++ diff --git a/content/about-resa/95-past-sponsors/wellcome.md b/content/about-resa/95-past-sponsors/wellcome.md deleted file mode 100644 index d9218635..00000000 --- a/content/about-resa/95-past-sponsors/wellcome.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "wellcome-trust-logo.png" - url = "https://wellcome.org/" - text = "Wellcome Trust logo" -+++ diff --git a/content/about-resa/95-titus-brown-quote.md b/content/about-resa/95-titus-brown-quote.md deleted file mode 100644 index a1fb7968..00000000 --- a/content/about-resa/95-titus-brown-quote.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "buttons" -#disabled = false -date = "2020-07-21" -weight = 100 -background = "secondary" - -title = "Data implies software: it's not much good gathering data if you don't have the ability to analyse it." -#subtitle = "" - -[[buttons]] - text = "Titus Brown, Associate Professor, University of California, Davis, USA" - url = "http://ivory.idyll.org/blog/2017-data-implies-software.html" - color = "link" -+++ - diff --git a/content/about-resa/RS_roles.jpg b/content/about-resa/RS_roles.jpg deleted file mode 100644 index f938b271..00000000 Binary files a/content/about-resa/RS_roles.jpg and /dev/null differ diff --git a/content/about-resa/index.md b/content/about-resa/index.md deleted file mode 100644 index 2b236b02..00000000 --- a/content/about-resa/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "About ReSA" -date = "2020-07-21" -+++ diff --git a/content/about/_index.md b/content/about/_index.md new file mode 100644 index 00000000..8217d1e7 --- /dev/null +++ b/content/about/_index.md @@ -0,0 +1,572 @@ +--- +title: +date: 2025-04-23 +type: landing + +sections: + - block: markdown + content: + title: + text: | + About ReSA + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + + + - block: markdown + content: + title: + text: | +
+
+ + The vision of the Research Software Alliance (ReSA) is that research software and those who develop and maintain it are recognised and valued as fundamental and vital to research worldwide. + + A [wide range](https://arxiv.org/abs/1811.08473) of research software organisations and programs exist internationally to address the varied challenges in + software productivity, quality, reproducibility, and sustainability. ReSA aims to coordinate across these efforts to leverage investments, to achieve shared goals. The [ReSA Strategic Plan](https://doi.org/10.5281/zenodo.15444952) provides details. The [ReSA engagement plan](https://doi.org/10.5281/zenodo.7714004) contains more information on how community engagement occurs. Also available is our [2024 Community Report](https://doi.org/10.5281/zenodo.15264853) and [overview of ReSA](https://doi.org/10.54900/zwm7q-vet94). + + ReSA is a fiscally sponsored project of [Code for Science & Society](https://www.codeforsociety.org/) and led by the ReSA [Steering Committee](/about/governance/). + + Members of the ReSA community are expected to adhere to the ReSA [Code of Conduct](/about/code-of-conduct/). + + **To cite our organisation** please refer to [The Research Software Alliance (ReSA)](https://upstream.force11.org/the-research-software-alliance-resa/), by Daniel S. Katz and Michelle Barker, 2023, [doi.org/10.54900/zwm7q-vet94](https://doi.org/10.54900/zwm7q-vet94). +
+
+ + + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + + - block: markdown + content: + title: Why ReSA? + text: | +
+
+ + [Software is pervasive in modern research](https://zenodo.org/record/3884311#.YeV3C1hBzJw), enabling the generation, analysis and/or presentation of research outputs. Research software is a key driver of innovation and the economy. ReSA focuses on software that is developed to serve a research purpose, rather than the standard software that some researchers also use for research purposes. + + While software has started to be recognised internationally as a key part of facilitating trusted, reproducible research outputs and open science, recognition of research software as a valuable research input and output has lagged behind that of research data. AI-driven research is also [dependent on software](https://doi.org/10.5281/zenodo.13350747), although it is not always adequately understood that data preparation and model training are performed by software, and that models are implemented in software. + + [Significant effort](https://www.nature.com/articles/s43588-024-00651-2) is still needed to influence culture change towards research software across a broad spectrum of [stakeholders](/about/stakeholders/), including researchers, institutions, funders, and publishers, and to develop and promote standards for developing research software that meets the needs of reliable, reproducible, and reusable research. +
+
+ design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: + text: | +
+
+ + Research software is [defined](https://doi.org/10.15497/RDA00068) by Barker et al (2022) in the [FAIR for Research Software Principles](https://www.nature.com/articles/s41597-022-01710-x) as including _β€œsource code files, algorithms, scripts, computational workflows and executables that were created during the research process or for a research purpose. Software components (e.g., operating systems, libraries, dependencies, packages, scripts, etc.) that are used for research but were not created during or with a clear research intent should be considered software in research and not research software. This differentiation may vary between disciplines."_ + + The [roles of research software](https://doi.org/10.54900/xdh2x-kj281) have also been described by Rob van Nieuwpoort and Daniel S. Katz (2024) as follows: + +
+ Research software roles +
+
+
+ + + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: Financial Information + text: | +
+
+ + ReSA is supported by the community through: + * [Organisational Members](/about/membership/) + * Project grants + * Founding Members + * [Task force support](../taskforces/tf-support/) + * [Donations](/about/donate/) + + ReSA’s operations are supported through a combination of financial and in-kind contributions from Founding Members, Organisational Members, and project grants. These resources primarily sustain a part-time Director and a part-time Program Manager, who lead the ReSA community and facilitate its activities. + + An [overview](https://docs.google.com/spreadsheets/d/1u00bPi5jIeI_iO5AfaBA97jxdLTgQW5rWwGkGI7RI0M/edit#gid=0) of ReSA income and expenditures is available for review. Our grants are also available on [Open Grants](https://www.ogrants.org/). +
+
+ design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + + + + - block: markdown + content: + title: Founding Members + text: | +
+
+ + In 2022 ReSA announced six Founding Members. Founding Members express their deep commitment to the ReSA vision that research software + and those who develop and maintain it are recognised and valued as fundamental and vital to research worldwide. To do this, they provide + resources needed to support ReSA in its aim to bring research software communities together to collaborate on the advancement of the + research software ecosystem. + + +
+ + + +
+
+
+ + Digital Research Alliance of Canada + +
+
+ + ARDC logo + +
+
+ + NCSA logo + +
+
+ +
+
+ + Netherlands eScience Center logo + +
+
+ + Sloan logo + +
+
+ + SSI logo + +
+
+
+
+
+ design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: Organisational Members + text: | + +
+
+
+ + + +
+
+
+ + Alfred P. Sloan Foundation + +
+
+ + ARDC logo + +
+
+ + ASAP + +
+
+ +
+
+ + Astera logo + +
+
+ + Chan Zuckerberg Initiative + +
+
+ + German Research Foundation + +
+
+ +
+
+ + Digital Research Alliance of Canada + +
+
+ + Kavli logo + +
+
+ + Microsoft logo + +
+
+ + +
+
+ + NCSA + +
+
+ + New Zealand eScience Infrastructure + +
+
+ + Netherlands eScience Center + +
+
+
+
+ + NWO logo + +
+
+ + RSU logo + +
+
+ + Schmidt Sciences logo + +
+
+
+
+ + Simons Foundation + +
+
+ + Software Sustainability Institute + +
+
+ + UKRI logo + +
+
+
+
+ + US-RSE logo + +
+
+ + Volkswagen Foundation logo + +
+
+ + Wellcome logo + +
+
+
+
+ + design: + background: + color: "#f98c01" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + + - block: markdown + content: + title: Sponsors + text: | +
+
+
+ + + +
+
+ + Chan Zuckerberg Initiative + +
+
+ + Sloan logo + +
+
+ + STFC logo + +
+
+
+
+ + University of Illinois logo + +
+
+
+
+ design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: Partners + text: | +
+
+
+ + + +
+
+ + RDA logo + +
+
+
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: Past Sponsors + text: | +
+
+
+ + + + + +
+
+ + Moore Foundation logo + +
+
+ + RDC DRC logo + +
+
+ + Stanford logo + +
+
+ +
+
+ + Wellcome Trust logo + +
+
+
+
+ design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + + + - block: markdown + content: + title: | +
+
+ + Data implies software: it’s not much good gathering data if you don’t have the ability to analyse it. + +
+
+ subtitle: + text: +

Titus Brown, Associate Professor, University of California, Davis, USA

+ + design: + background: + color: "#f98c01" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] +--- diff --git a/content/about/code-of-conduct/_index.md b/content/about/code-of-conduct/_index.md new file mode 100644 index 00000000..0643aabf --- /dev/null +++ b/content/about/code-of-conduct/_index.md @@ -0,0 +1,124 @@ +--- +# Leave the homepage title empty to use the site title +title: +date: 2022-10-24 +type: landing + +sections: + - block: markdown + content: + title: + text: | + + Code of Conduct + {style="color: white; font-size: 2rem; text-align: center;"} + + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: true + spacing: + padding: ["4rem", "2rem"] + + - block: markdown + content: + title: ReSA Code of Conduct + text: | + +
+
+ + **Contents** + + 1. Introduction and Scope + 2. Diversity Statement + 3. Standards for Behavior + 4. Unacceptable Behavior + 5. Reporting Guidelines + 6. How to Submit a Report + 7. License + + **1. Introduction and Scope** + + This code of conduct should be honored by everyone who participates in the ReSA community. It should be honored in any ReSA related activities, by anyone claiming affiliation with ReSA, and especially when someone is representing ReSA in any role (including as an event volunteer or speaker). + This code of conduct applies to all spaces managed by ReSA, including all public and private mailing lists, issue trackers, wikis, forums, code repositories, and any other communication channel used by our community. The code of conduct equally applies at ReSA events, regardless of virtual/physical setting, and governs standards of behavior for attendees, speakers, volunteers, booth staff, and event sponsors. + + This code is not exhaustive or complete. It serves to distill our understanding of a collaborative, inclusive community culture. Please try to follow this code in spirit as much as in letter, to create a friendly and productive environment that enriches the ReSA community. + We require all ReSA sponsored and affiliated projects, activities, and events, to adopt a code of conduct that encourages a productive, respectful environment for all contributors and community members. + + If a person is found to violate the ReSA Code of Conduct, the ReSA Steering Committee may take any action they deem appropriate to resolve the situation, including warning the person in question, removing them from a specific activity, banning them from further participation in activities (in person or online), or expulsion from ReSA. + + **2. Diversity Statement** + + ReSA welcomes and encourages participation in our community by people of all backgrounds and identities. We are committed to promoting and sustaining a culture that values mutual respect, tolerance, and learning. We work together as a community to help each other live out these values. + + We have created this diversity statement because we believe that a diverse community is stronger, more vibrant, and produces better software and better research. A diverse community where people treat each other with respect has more potential contributors, more sources for ideas, and fewer shared assumptions that might hinder the achievement of our goals. + + Although we have phrased the formal diversity statement generically to make it all-inclusive, we recognize that there are specific identities that are impacted by systemic discrimination and marginalization. We welcome all people to participate in ReSA regardless of their identity or background. + + **3. Standards for Behavior** + + All communication should be appropriate for a professional audience including people of many different backgrounds. Please always be kind and courteous. There is never a need to be mean, rude, or disrespectful. Thank you for helping make this a welcoming, friendly community for all. + + We, the members of ReSA, strive to: + + * Be empathetic, respectful, welcoming, friendly, and patient. We remember that every ReSA project, and program is crafted by human beings who deserve to be treated with kindness and empathy. We work together to resolve conflict and assume good intentions. We may all experience some frustration from time to time, but we do not allow frustration to turn into a personal attack. A community where people feel uncomfortable or threatened is not a productive one. + * Be collaborative. Our work depends on the participation of many people, and in turn others depend on our work. Effective and friendly collaboration enables everyone to better achieve their goals. + * Be careful in the words that we choose. We are careful and respectful in our communication, and we take responsibility for our own speech. Be kind to others. Do not insult or put down other members of the community. + + **4. Unacceptable Behavior** + + We, the members of ReSA, are committed to making participation in this community a harassment-free experience. + + We will not accept harassment or other exclusionary behaviors, such as: + + * The use of sexualized language or imagery + * Excessive profanity (please avoid curse words; people differ greatly in their sensitivity to swearing) + * Posting sexually explicit or violent material + * Violent or intimidating threats or language directed against another person or group + * Inappropriate physical contact and/or unwelcome sexual attention or sexual comments + * Sexist, racist, or otherwise discriminatory jokes and language + * Trolling or insulting and derogatory comments + * Written or verbal comments which have the effect of excluding people on the basis of membership in a specific group, including level of experience, gender, gender identity and expression, sexual orientation, disability, neurotype, personal appearance, body size, race, ethnicity, age, religion, or nationality + * Public or private harassment + * Continuing to initiate interaction (such as photography, recording, messaging, or conversation) with someone after being asked to stop + * Sustained disruption of talks, events, or communications, such as heckling of a speaker + * Publishing (or threatening to post) other people’s personally identifying information (β€œdoxing”), such as physical or electronic addresses, without explicit permission + * Other unethical or unprofessional conduct + * Advocating for, or encouraging, any of the above behaviors + + **5. Reporting Guidelines** + + If you believe someone is violating the code of conduct, please report this in a timely manner (see How to Submit a Report in the next section). Code of conduct violations reduce the value of the community for everyone. The ReSA Steering Committee takes reports of misconduct very seriously and are committed to preserving and maintaining the welcoming nature of our community. + + All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. All reports will be kept confidential, with the exception of cases where the Steering Committee determines the report should be shared with law enforcement. In those cases, the report will be shared with the proper legal authorities. + + In some cases the ReSA Steering Committee may determine that a public statement will need to be made. If that is the case, the identities of all involved parties and reporters will normally remain confidential unless those individuals instruct us otherwise. The ReSA Steering Committee may decide to identify details of code of conduct violators in order to safeguard the community as a whole. + + Take care of each other. Alert the [ReSA Steering Committee](mailto:info@researchsoft.org) if you notice a dangerous situation, someone in distress, or violations of this code of conduct, even if they seem inconsequential. + + **6. How to Submit a Report** + + If you feel your safety is in jeopardy or the situation is an emergency, contact local law enforcement before making a report to ReSA. ReSA is committed to promptly addressing any reported issues. If you have experienced or witnessed behavior that violates the ReSA Code of Conduct, please send an email to [conduct@researchsoft.org](mailto:conduct@researchsoft.org). These emails are sent to two staff from ReSA’s fiscal sponsor, [Code for Science and Society](https://codeforscience.org/): Danielle Robinson, President & Co-Executive Director; and Jessica Hardwicke, Sponsored Projects Services Manager; and the ReSA Director, Michelle Barker. An alternate contact is [Daniel S. Katz](mailto:d.katz@ieee.org), Chair of the ReSA Steering Committee. Please provide as much information as you can about the incident, such as where and when it occurred. + + **7. License** + + This code of conduct has been adapted from the [US-RSE Association Code of Conduct](https://us-rse.org/code-of-conduct/), which builds on the [NumFocus Code of Conduct](https://numfocus.org/code-of-conduct), which was itself adapted from numerous sources, including the [Geek Feminism wiki](http://geekfeminism.wikia.com/wiki/Conference_anti-harassment/Policy), created by the Ada Initiative and other volunteers, which is under a [Creative Commons Zero license](https://creativecommons.org/share-your-work/public-domain/cc0/), the [Contributor Covenant version 1.2.0](http://contributor-covenant.org/version/1/2/0/), the [Bokeh Code of Conduct](https://github.com/bokeh/bokeh/blob/master/CODE_OF_CONDUCT.md), the [SciPy Code of Conduct](https://github.com/jupyter/governance/blob/master/conduct/enforcement.md), the [Carpentries Code of Conduct](https://docs.carpentries.org/topic_folders/policies/code-of-conduct.html#enforcement-manual), and the [NeurIPS Code of Conduct](https://nips.cc/public/CodeOfConduct). + + The ReSA Code of Conduct is made available under the [Creative Commons Attribution 4.0 International license](https://creativecommons.org/licenses/by/4.0/) (CC BY 4.0). +
+
+ design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- diff --git a/content/about/contact/_index.md b/content/about/contact/_index.md new file mode 100644 index 00000000..45515da1 --- /dev/null +++ b/content/about/contact/_index.md @@ -0,0 +1,143 @@ +--- +# Leave the homepage title empty to use the site title + +title: Contact +date: 2022-10-24 + +type: landing + +sections: + - block: markdown + content: + title: + text: | + Contact + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + - block: contact + content: + title: + text: |- +
+
+ + + + + + email: info@researchsoft.org + + +# Automatically link email and phone or display as text? + autolink: true + + # Email form provider + form: + provider: netlify + formspree: + id: + netlify: + # Enable CAPTCHA challenge to reduce spam? + captcha: true + + design: + columns: '1' + background: + color: "#ffffff" + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: Community + text: | +
+
+ + If you want to be part of our community join our current [task forces](/taskforces/) and subscribe to our newsletter. + +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: + text: | + + + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: "Connect with us" + subtitle: "" + text: | + + + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] +--- diff --git a/content/about/donate/_index.md b/content/about/donate/_index.md new file mode 100644 index 00000000..df3caca1 --- /dev/null +++ b/content/about/donate/_index.md @@ -0,0 +1,79 @@ +--- +title: +date: 2025-04-23 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Donate + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + - block: markdown + content: + title: + text: | +
+
+ Your donation will help ReSA to serve the research software community in the + following ways: + + - Bring community members together through + [task forces](/taskforces/) on specific issues + impacting the global research software ecosystem. + - Facilitate + [networking opportunities](/../forums/funders-forum/) + for [stakeholders](/about/stakeholders/) to exchange information and collaborate on an international level. + - Create a range of [outputs](/resource/resa-resources/) that + provide useful references to support recognition and valuing of research + software as a key component of research. + - Co-convene [events](/events/events-current/) with international + collaborators. + - Share [best practices](/resource/guidelines/) for the + recognition of research software and the people who develop and maintain it. + + We welcome any amount you can offer – every donation makes a positive impact on + our community. + + You can select the frequency of donations to ReSA once, monthly, + or quarterly, using a card, PayPal or bank transfer through the following form. + + Donate + + For donations over $5,000, please email + <[info@researchsoft.org](mailto:info@researchsoft.org)> to arrange a wire transfer/ACH payment. + + ReSA is a fiscally sponsored project of + [Code for Science & Society](https://codeforscience.org/). An + [overview](https://docs.google.com/spreadsheets/d/1u00bPi5jIeI_iO5AfaBA97jxdLTgQW5rWwGkGI7RI0M/edit#gid=0) + of ReSA income and expenditures is available for review. Our grants are also + available on [Open Grants](https://www.ogrants.org/). + +
+
+ + + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- + + diff --git a/content/about/governance/Colette.jpg b/content/about/governance/Colette.jpg new file mode 100644 index 00000000..5c7fb5e7 Binary files /dev/null and b/content/about/governance/Colette.jpg differ diff --git a/content/about/governance/_index.md b/content/about/governance/_index.md new file mode 100644 index 00000000..d97a55f6 --- /dev/null +++ b/content/about/governance/_index.md @@ -0,0 +1,202 @@ +--- +title: +date: 2025-06-03 +type: landing + +sections: + - block: + content: + title: + + - block: markdown + content: + title: ReSA Steering Committee + subtitle: '' + text: | +
+
+
+
+
+ +
+

Chair: Daniel S. Katz

+

Chief Scientist, National Center for Supercomputing Applications (NCSA), University of Illinois

+

Lives In US

+

Daniel S. Katz is Chief Scientist at the National Center for Supercomputing Applications (NCSA), and Research Associate Professor in Computer Science, Electrical and Computer Engineering, and the School of Information Sciences (iSchool) at the University of Illinois Urbana-Champaign. He was previously a Senior Fellow at the University of Chicago and Argonne National Laboratory, a Program Director at the National Science Foundation, and had roles at Louisiana State University, NASA JPL, and Cray Research. Dan's interest is in the development and use of advanced cyberinfrastructure to solve challenging problems at multiple scales, including applications, algorithms, fault tolerance, and programming in parallel and distributed computing, and policy issues such as citation and credit mechanisms and practices associated with software and data, organization and community practices for collaboration, and career paths for computing researchers. He is a senior member of the IEEE and ACM, co-founder and current Associate Editor-in-Chief of the Journal of Open Source Software, and co-founder of the US Research Software Engineer Association (US-RSE).

+
+ +
+
+ +
+

Anne Fouilloux

+

Senior Research Engineer at Simula Research Laboratory

+

Lives in Norway

+

Anne is an Open Science and FAIR Software and Data Advocate. She is working at Simula Research Laboratory (Oslo, Norway) and is leading the Nordic Infrastructure Collaboration on Earth System Tools (NICEST) at the Nordic e-infrastructure Collaboration (NeIC). She never works alone, always in collaboration with community driven initiatives and open source communities such as Pangeo, The Environmental Data Science Book, The Turing Way and the Galaxy Project. + She is developing training materials and teaching basic-to-advanced research computing skills to students, researchers, Research Software Engineers from all disciplines to advance FAIRness of Software management and development practices so that research groups can collaboratively develop, review, discuss, test, share and reuse their codes.

+
+ +
+
+ +
+

Caxton Murira

+

Product Specialist, Team Lead, Clinical Research and Trials Community (CRTC) programme at the Science for Africa Foundation

+

Lives in Kenya

+

Caxton Murira is a Product Specialist and team lead for the Clinical Research and Trials Community (CRTC) programme at the Science for Africa Foundation. He is passionate about data and has delivered successful projects in a myriad of sectors such as health, governance, climate change for INGOs, government and public institutions. Caxton has an MSc in project management and a BSc in computer science. Prior to joining SFA Foundation, he worked at the African Academy of Sciences and other not for profit outfits in similar roles. Caxton is keen to promote open research initiatives, open data, and research software, with the goal of achieving fair access to healthcare and creating sustainable innovative solutions that address Africa's most pressing challenges.

+
+
+
+
+ +
+
+
+
+
+ +
+

Juan Bicarregui

+

Head of the Data Division, Science and Technology Facilities Council (STFC)

+

Lives In UK

+

​​​Juan Bicarregui is Head of the Data Division in the Scientific Computing Department at STFC. Juan’s division has responsibility for research and development of the data systems that handle much of the huge volume of scientific data that is produced by the STFC research facilities. Juan has played a key role in formulating UK policy on opening up access to research outputs and chaired the cross Research Council group which published the RCUK Joint Principles on Data and associated Guidelines. Juan was a member of the steering group that set up the Research Data Alliance and co-chaired the RDA Organisational Advisory Board. Currently, Juan is coordinator of the H2020 EOSCpilot project that is supporting the first phase in the development of the European Open Science Cloud.

+
+ +
+
+ +
+

Neil Chue Hong

+

Director, Software Sustainability Institute, University of Edinburgh

+

Lives In UK

+

Neil P. Chue Hong is the founding Director of the Software Sustainability Institute and Professor of Research Software Policy and Practice at EPCC, University of Edinburgh. He works to improve software sustainability, research software engineering practices, research software communities of practice, and the impact of research software policy and incentives. He has co-led development and implementation of international research software guidelines including the FAIR Principles for Research Software, Software Citation Principles, and NISO Reproducibility Badging and Definitions. He holds a number of research funder advisory roles, including chairing the steering committee for the UK’s exascale software, algorithms and infrastructure programme (ExCALIBUR) and a member of the UKRI Net Zero Digital Research Infrastructure steering committee, BBSRC Transformative Technologies strategic advisory panel, and NERC Digital Research Infrastructure Investment Board. He is the Editor-in-Chief for the Journal of Open Research Software, and co-editor of β€œSoftware Engineering for Science”.

+
+ +
+
+ +
+

NicolΓ‘s Palopoli

+

Adjunct Researcher, National Research Council in Argentina (CONICET)

+

Lives In Argentina

+

NicolΓ‘s is an Adjunct Researcher at the National Research Council in Argentina (CONICET) and a Project Leader at the Structural Bioinformatics Group, Universidad Nacional de Quilmes (UNQ, Buenos Aires, Argentina). His research is focused on understanding the functional nature of proteins, with special interest in their evolutionary relationships and their interactions in biological systems. He is a certified trainer and over the last 15 years he has delivered online and virtual courses on biology, programming and education for graduate and postgraduate university students, as well as several workshops in different communities of practice. Nicolas is also the Co-Executive Director and Advisory Committee Chair of MetaDocencia, an online community that builds scientific and technical capacities through the co-creation of networks, learning spaces, and accessible resources focused on Spanish-speaking communities.

+
+
+
+
+ +
+
+
+
+
+ +
+

Shurui Zhou

+

Assistant Professor, The University of Toronto

+

Lives In Canada

+

Shurui Zhou is an Assistant Professor at the University of Toronto. Her research focuses on facilitating distributed and interdisciplinary software teams to build high-quality systems, including but not limited to building better programming environments for software developers, designing better code review and issue tracking systems to facilitate better collaboration among team members, and identifying vulnerabilities from the codebase. She studies and tackles the problems from both technical and social perspectives, especially in the context of modern open-source collaboration forms, Industrial plant software, and interdisciplinary teams when building AI-based systems or scientific software. She also investigates the collaboration challenges for hardware teams, specifically for CAD designers using online collaborative platforms. To achieve her goals, she combines advances in tooling and software engineering principles with insights from other disciplines that study human collaboration, for which she combines and mixes a wide range of research methods.

+
+
+
+
+ + + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + + - block: markdown + content: + title: Chairs of ReSA Subcommittees + subtitle: '' + text: | +
+
+
+ +
+

Colette Bos

+

Programme Director, Netherlands eScience Centre

+

Lives In the Netherlands

+

Subcomittee: ADORE.software governance

+

Colette Bos is the programme director of the Netherlands eScience Center. Her main responsibility is the call strategy and responsibility for the project portfolio. For this, she works closely with the Programme Managers. She also contributes to the general management of the eScience Center in the directors’ team and to external relations of the Netherlands eScience Center. Colette obtained her PhD at Utrecht University, with research on how scientists connect their work to large societal goals in science policy. After that, she moved to the Dutch Research Council (NWO), where she worked as a coordinator on the development of the Dutch National Research Agenda and as management board member in the European Joint Programming Initiative Urban Europe. This was followed by two years as board secretary at the Mathematics department of Utrecht University, where she contributed to strategy and policy development and implementation of the department and where she managed operational matters. + Learn more about ADORE.software .

+
+ +
+ design: + spacing: + padding: ["3rem", "1rem"] + + + + - block: markdown + content: + title: Former Steering Committee Members + text: | +
+
+ + **Yo Yehudi**, Co-founder, Open Life Science (OLS), UK (2023-2025) + + **Mark Leggott**, Director of International Relations, Digital Research Alliance of Canada (2021-2024) + + **Joris van Eijnatten**, General Director, Netherlands eScience Center; and Professor of Digital History, Utrecht University (2021-2024) + + **Eva Mendez**, Associate Professor, Universidad Carlos III de Madrid, Spain (2021 -2023) + + **Chris Mentzel**, Executive Director, Data Sciences, Stanford Data Science Initiative, Stanford University, USA (2019 - 2023) + + **Andrew Treloar**, Director, Platforms and Software, Australian Research Data Commons, Australia (2019 -2023) + + **Lou Woodley**, Director, Center for Scientific Collaboration and Community Engagement, UK (2021 - 2023) + + **Tania Allard**, Co-Director, Quansight, UK (2021) + + **Serah Njambi Rono**, Director of Community Development and Engagement, The Carpentries, Estonia (2021) + + **Karthik Ram**, Senior Research Data Scientist at University of California, Berkeley, USA (2019-2021) + + **Catherine Jones**, Energy Data Centre Lead, Science and Technologies Facilities Council, UK (2019-2020) + + **Scott Henwood**, Senior Director, Programs, CANARIE, Canada (2019) +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + + - block: markdown + content: + title: + text: | +
+
+ + For further information, please refer to the ReSA Steering Committee + [**Terms of Reference**](https://docs.google.com/document/d/1cr6jce4TBgd0KJemYtpuK-V4CQW1ZAYlcVqnJi4ZRCg/edit?tab=t.0#heading=h.qc1uwr8o0jhl). + + To meet the ReSA team go to the [**People page**](/about/our-team/). +
+
+ + + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- diff --git a/content/governance/SC/anne.jpg b/content/about/governance/anne.jpg similarity index 100% rename from content/governance/SC/anne.jpg rename to content/about/governance/anne.jpg diff --git a/content/governance/SC/caxton.jpg b/content/about/governance/caxton.jpg similarity index 100% rename from content/governance/SC/caxton.jpg rename to content/about/governance/caxton.jpg diff --git a/content/governance/SC/dan.jpg b/content/about/governance/dan.jpg similarity index 100% rename from content/governance/SC/dan.jpg rename to content/about/governance/dan.jpg diff --git a/content/about/governance/juan.jpg b/content/about/governance/juan.jpg new file mode 100644 index 00000000..d0737169 Binary files /dev/null and b/content/about/governance/juan.jpg differ diff --git a/content/governance/SC/neil.jpg b/content/about/governance/neil.jpg similarity index 100% rename from content/governance/SC/neil.jpg rename to content/about/governance/neil.jpg diff --git a/content/governance/SC/nico.jpg b/content/about/governance/nico.jpg similarity index 100% rename from content/governance/SC/nico.jpg rename to content/about/governance/nico.jpg diff --git a/content/governance/SC/shurui.jpg b/content/about/governance/shurui.jpg similarity index 100% rename from content/governance/SC/shurui.jpg rename to content/about/governance/shurui.jpg diff --git a/static/images/1_MESR_RVB.jpg b/content/about/images/1_MESR_RVB.jpg similarity index 100% rename from static/images/1_MESR_RVB.jpg rename to content/about/images/1_MESR_RVB.jpg diff --git a/static/images/9354.jpg b/content/about/images/9354.jpg similarity index 100% rename from static/images/9354.jpg rename to content/about/images/9354.jpg diff --git a/static/images/ARDC_logo_RGB.png b/content/about/images/ARDC_logo_RGB.png similarity index 100% rename from static/images/ARDC_logo_RGB.png rename to content/about/images/ARDC_logo_RGB.png diff --git a/static/images/ASAP_FullColor.png b/content/about/images/ASAP_FullColor.png similarity index 100% rename from static/images/ASAP_FullColor.png rename to content/about/images/ASAP_FullColor.png diff --git a/static/images/Alliance.png b/content/about/images/Alliance.png similarity index 100% rename from static/images/Alliance.png rename to content/about/images/Alliance.png diff --git a/static/images/AsteraLogo.png b/content/about/images/AsteraLogo.png similarity index 100% rename from static/images/AsteraLogo.png rename to content/about/images/AsteraLogo.png diff --git a/static/images/CZI_Logo.jpg b/content/about/images/CZI_Logo.jpg similarity index 100% rename from static/images/CZI_Logo.jpg rename to content/about/images/CZI_Logo.jpg diff --git a/static/images/Carpentries.png b/content/about/images/Carpentries.png similarity index 100% rename from static/images/Carpentries.png rename to content/about/images/Carpentries.png diff --git a/static/images/DFG_logo.jpg b/content/about/images/DFG_logo.jpg similarity index 100% rename from static/images/DFG_logo.jpg rename to content/about/images/DFG_logo.jpg diff --git a/static/images/Microsoft logo.png b/content/about/images/Microsoft_logo.png similarity index 100% rename from static/images/Microsoft logo.png rename to content/about/images/Microsoft_logo.png diff --git a/static/images/NCSA.png b/content/about/images/NCSA.png similarity index 100% rename from static/images/NCSA.png rename to content/about/images/NCSA.png diff --git a/static/images/NWO-logo.jpeg b/content/about/images/NWO-logo.jpeg similarity index 100% rename from static/images/NWO-logo.jpeg rename to content/about/images/NWO-logo.jpeg diff --git a/static/images/NeSI.png b/content/about/images/NeSI.png similarity index 100% rename from static/images/NeSI.png rename to content/about/images/NeSI.png diff --git a/static/images/RDA_Logotype_Low.png b/content/about/images/RDA_Logotype_Low.png similarity index 100% rename from static/images/RDA_Logotype_Low.png rename to content/about/images/RDA_Logotype_Low.png diff --git a/content/about-resa/RS_roles_v2.jpeg b/content/about/images/RS_roles_v2.jpeg similarity index 100% rename from content/about-resa/RS_roles_v2.jpeg rename to content/about/images/RS_roles_v2.jpeg diff --git a/content/membership/ReSAOrganisationalMember.jpg b/content/about/images/ReSAOrganisationalMember.jpg similarity index 100% rename from content/membership/ReSAOrganisationalMember.jpg rename to content/about/images/ReSAOrganisationalMember.jpg diff --git a/static/images/STFC+logo.png b/content/about/images/STFC+logo.png similarity index 100% rename from static/images/STFC+logo.png rename to content/about/images/STFC+logo.png diff --git a/static/images/Simons-Foundation.jpg b/content/about/images/Simons-Foundation.jpg similarity index 100% rename from static/images/Simons-Foundation.jpg rename to content/about/images/Simons-Foundation.jpg diff --git a/static/images/Sloan-logo.png b/content/about/images/Sloan-logo.png similarity index 100% rename from static/images/Sloan-logo.png rename to content/about/images/Sloan-logo.png diff --git a/static/images/Stradini_logo_ENG_vert-RGB.jpg b/content/about/images/Stradini_logo_ENG_vert-RGB.jpg similarity index 100% rename from static/images/Stradini_logo_ENG_vert-RGB.jpg rename to content/about/images/Stradini_logo_ENG_vert-RGB.jpg diff --git a/static/images/The_Kavli_Foundation_Logo_White_Red.png b/content/about/images/The_Kavli_Foundation_Logo_White_Red.png similarity index 100% rename from static/images/The_Kavli_Foundation_Logo_White_Red.png rename to content/about/images/The_Kavli_Foundation_Logo_White_Red.png diff --git a/static/images/UCBerkeley_wordmark_blue.png b/content/about/images/UCBerkeley_wordmark_blue.png similarity index 100% rename from static/images/UCBerkeley_wordmark_blue.png rename to content/about/images/UCBerkeley_wordmark_blue.png diff --git a/static/images/UKRI logo.png b/content/about/images/UKRI_logo.png similarity index 100% rename from static/images/UKRI logo.png rename to content/about/images/UKRI_logo.png diff --git a/static/images/USRSE logo.png b/content/about/images/USRSE_logo.png similarity index 100% rename from static/images/USRSE logo.png rename to content/about/images/USRSE_logo.png diff --git a/static/images/Volkswagen.jpg b/content/about/images/Volkswagen.jpg similarity index 100% rename from static/images/Volkswagen.jpg rename to content/about/images/Volkswagen.jpg diff --git a/static/images/Wellcome-logo.png b/content/about/images/Wellcome-logo.png similarity index 100% rename from static/images/Wellcome-logo.png rename to content/about/images/Wellcome-logo.png diff --git a/static/images/Wellcome_logo_Black.jpg b/content/about/images/Wellcome_logo_Black.jpg similarity index 100% rename from static/images/Wellcome_logo_Black.jpg rename to content/about/images/Wellcome_logo_Black.jpg diff --git a/static/images/illinois-logo-internal-collaboration.png b/content/about/images/illinois-logo-internal-collaboration.png similarity index 100% rename from static/images/illinois-logo-internal-collaboration.png rename to content/about/images/illinois-logo-internal-collaboration.png diff --git a/static/images/resa-logo-inverted.svg b/content/about/images/logo.svg similarity index 95% rename from static/images/resa-logo-inverted.svg rename to content/about/images/logo.svg index 88193b9f..689e07b2 100644 --- a/static/images/resa-logo-inverted.svg +++ b/content/about/images/logo.svg @@ -5,14 +5,14 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" + height="40.709969" + width="105.19953" version="1.1" id="Elegant_Logo_Kit" x="0px" y="0px" - viewBox="0 0 143.5 42.009968" - xml:space="preserve" - width="143.5" - height="42.009968">image/svg+xml .st0{fill:none;} - .st1{fill:#FDFDFD;} + .st1{fill:#020202;} .st2{-inkscape-font-specification:'League Gothic, Normal'; font-family:'League Gothic'} .st3{font-size:36px;} .st4{letter-spacing:1;} @@ -31,8 +31,8 @@ .st8{font-size:10px;} + transform="translate(-139.4327,-77.318332)" + id="_x36__2_"> diff --git a/static/images/moore-logo-color-small.png b/content/about/images/moore-logo-color-small.png similarity index 100% rename from static/images/moore-logo-color-small.png rename to content/about/images/moore-logo-color-small.png diff --git a/static/images/nesc-transparent.png b/content/about/images/nesc-transparent.png similarity index 100% rename from static/images/nesc-transparent.png rename to content/about/images/nesc-transparent.png diff --git a/static/images/nesc.png b/content/about/images/nesc.png similarity index 100% rename from static/images/nesc.png rename to content/about/images/nesc.png diff --git a/static/images/rdc-logo.png b/content/about/images/rdc-logo.png similarity index 100% rename from static/images/rdc-logo.png rename to content/about/images/rdc-logo.png diff --git a/static/images/schmidtsciences_primary_color.png b/content/about/images/schmidtsciences_primary_color.png similarity index 100% rename from static/images/schmidtsciences_primary_color.png rename to content/about/images/schmidtsciences_primary_color.png diff --git a/static/images/ssi_logo_with_name-small2.png b/content/about/images/ssi_logo_with_name-small2.png similarity index 100% rename from static/images/ssi_logo_with_name-small2.png rename to content/about/images/ssi_logo_with_name-small2.png diff --git a/static/images/stanford-university-stacked.png b/content/about/images/stanford-university-stacked.png similarity index 100% rename from static/images/stanford-university-stacked.png rename to content/about/images/stanford-university-stacked.png diff --git a/content/about/membership/_index.md b/content/about/membership/_index.md new file mode 100644 index 00000000..5e4e5ec8 --- /dev/null +++ b/content/about/membership/_index.md @@ -0,0 +1,371 @@ +--- +title: +date: 2025-04-23 +type: landing + +sections: + - block: markdown + content: + title: + text: | + ReSA Organisational Membership + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + + + - block: markdown + content: + title: Welcome to ReSA + text: | +
+
+ + ReSA brings research software communities together to collaborate on the advancement of the research software ecosystem. + **ReSA organisational membership** will demonstrate your commitment to international collaboration and innovation for research (including [AI-driven research](https://doi.org/10.5281/zenodo.13350748)) by supporting the ReSA vision that research software and those who develop and maintain it are recognised and valued as fundamental and vital to research worldwide. + By joining us, you will have the opportunity to collaborate with decision makers and key influencers to create outcomes that will achieve both your goals and those of the international community. +
+
+
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: Organisational Membership Benefits + text: | + +
+
+ + Opportunities to: + - Collaborate with the international research software community to solve common issues + - Further the international standing and influence of your organisation + - Gain public recognition as an Organisational Member of ReSA and use of the official ReSA Organisational Member logo + - Learn and share best practice + - Promote your work to a global audience + - Broaden your reach by collaborating on ReSA projects + - Attend global community events + - Access decision makers and key influencers + - Receive regular communications + - ReSA Organisational Member Logo + + +
+ +
+
+
+ +
+ + + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: How to join + text: | +
+
+ + **To become a ReSA Organisational Member**, please provide your [contact details](https://airtable.com/shrI5UKJesqNoFiD7), and review the optional [membership agreement](https://docs.google.com/document/d/1arCDTzFaM8gavaSBOFcuHSI_m_WmvV4pJjwDVdNwmbk/edit) and consider if it is beneficial for you and if your organisation wishes to also sign this, or contact [memberships@researchsoft.org](mailto:memberships@researchsoft.org) to discuss further. Membership is for the calendar year. Organisations that join after 1 July are eligible for a 6-month membership. Membership fees are invoiced through our fiscal sponsor, [Code for Science and Society](https://codeforscience.org/). An [overview of Organisational Membership](https://docs.google.com/document/d/1Rlw55m1D4oQbwvwBzxUFvIVJYQ32QD5x/edit) (which summarises this webpage) is also available for use. Information on how ReSA funds are used is included in [About Us](/about/), and [donations](/about/donate/) are always welcome. + +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: Annual Investment + text: | +
+
+ + | Number of employees | High Income Country - Not-For-Profit (USD$) | High Income Country - For-Profit (USD$) | Low/Middle Income Country - Not-For-Profit (USD$) | Low/Middle Income Country - For-Profit (USD$) | + |--------------|-------------|-------------------|------------------|----------------| + | less than 150 | $2,500 | $4,000 | $500 | $800 | + | 151-250 | $5,000 | $8,000 | $1,000 | $1,600 | + | 250 or more | $12,500 | $20,000 | $2,500 | $4,000 | +
+
+ + + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: Recent ReSA Achievements + text: | +
+
+ + + - Leading the development of a [research software funders community](/forums/funders-forum/) that has engaged 60+ funding organisations in its goal to address common challenges to achieve the significant cultural change needed across the research sector and better coordinate investment globally. See [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/). + - Engaging in drafting of the [OECD Recommendation on Access to Research Data from Public Funding](https://www.oecd.org/sti/recommendation-access-to-research-data-from-public-funding.htm) and [UNESCO Recommendation on Open Science](https://en.unesco.org/science-sustainable-future/open-science/recommendation), which has led to the inclusion of research software in key international policy and [toolkits](https://www.unesco.org/en/open-science/toolkit-fostering-open-science-practices). + - Facilitating global [community forums](../../forums/community-leadership-forum/) and discussions, supported by [analysis](/resource/resa-resources/) of relevant issues, to identify community priorities and create task forces on topics such as [research software policy for research institutions](/resource/software-policies/), and [research software authorship](/tf-authorship-contribution/). + - Co-leading the drafting of the [FAIR for Research Software Principles](https://www.nature.com/articles/s41597-022-01710-x) which engaged 500+ community members. [Positive signals of adoption](/blog/2024-03/) demonstrate high levels of community support. + - Supporting the ReSA task force on [code availability by publishers](/taskforces/) to engage publishers in the coordination needed to gain wide-scale cultural change. + - Co-leading initiatives in [Africa](https://www.talarify.co.za/2023/05/29/driving-sustainable-research-software-and-systems-insights-from-the-first-research-software-indaba-in-africa/) (with [Research Software and Systems Engineers Africa](https://rsse.africa/)) and Asia (with [Research Software Engineers Asia Association](https://rse-asia.github.io/RSE_Asia/)) to identify research software community leaders and influencers to help shape international dialogues. + - Providing [resources](/resource//resa-resources/) to raise awareness of the importance of software in research. + +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: Enquiries + text: | + +
+
+ + Please contact Michelle Barker, [memberships@researchsoft.org](mailto:memberships@researchsoft.org). +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: Organisational Members + text: | + +
+
+
+ + + +
+
+
+ + Alfred P. Sloan Foundation + +
+
+ + ARDC logo + +
+
+ + ASAP + +
+
+ +
+
+ + Astera logo + +
+
+ + Chan Zuckerberg Initiative + +
+
+ + German Research Foundation + +
+
+ +
+
+ + Digital Research Alliance of Canada + +
+
+ + Kavli logo + +
+
+ + Microsoft logo + +
+
+ + +
+
+ + NCSA + +
+
+ + New Zealand eScience Infrastructure + +
+
+ + Netherlands eScience Center + +
+
+
+
+ + NWO logo + +
+
+ + RSU logo + +
+
+ + Schmidt Sciences logo + +
+
+
+
+ + Simons Foundation + +
+
+ + Software Sustainability Institute + +
+
+ + UKRI logo + +
+
+
+
+ + US-RSE logo + +
+
+ + Volkswagen Foundation logo + +
+
+ + Wellcome logo + +
+
+
+
+ + design: + background: + color: "#f98c01" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: Founding Members + text: | +
+
+ +
+ +
+
+ + Founding members + +
+
+ +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- \ No newline at end of file diff --git a/content/about/membership/images/1_MESR_RVB.jpg b/content/about/membership/images/1_MESR_RVB.jpg new file mode 100644 index 00000000..968a94b5 Binary files /dev/null and b/content/about/membership/images/1_MESR_RVB.jpg differ diff --git a/content/about/membership/images/ARDC_logo_RGB.png b/content/about/membership/images/ARDC_logo_RGB.png new file mode 100644 index 00000000..81025d9a Binary files /dev/null and b/content/about/membership/images/ARDC_logo_RGB.png differ diff --git a/content/about/membership/images/ASAP_FullColor.png b/content/about/membership/images/ASAP_FullColor.png new file mode 100644 index 00000000..5f7deced Binary files /dev/null and b/content/about/membership/images/ASAP_FullColor.png differ diff --git a/content/about/membership/images/Alliance.png b/content/about/membership/images/Alliance.png new file mode 100644 index 00000000..9937a450 Binary files /dev/null and b/content/about/membership/images/Alliance.png differ diff --git a/content/about/membership/images/AsteraLogo.png b/content/about/membership/images/AsteraLogo.png new file mode 100644 index 00000000..decc63a6 Binary files /dev/null and b/content/about/membership/images/AsteraLogo.png differ diff --git a/content/about/membership/images/CZI_Logo.jpg b/content/about/membership/images/CZI_Logo.jpg new file mode 100644 index 00000000..25848cd7 Binary files /dev/null and b/content/about/membership/images/CZI_Logo.jpg differ diff --git a/content/about/membership/images/DFG_logo.jpg b/content/about/membership/images/DFG_logo.jpg new file mode 100644 index 00000000..602da579 Binary files /dev/null and b/content/about/membership/images/DFG_logo.jpg differ diff --git a/content/about/membership/images/Microsoft_logo.png b/content/about/membership/images/Microsoft_logo.png new file mode 100644 index 00000000..afbbb4f8 Binary files /dev/null and b/content/about/membership/images/Microsoft_logo.png differ diff --git a/content/about/membership/images/NCSA.png b/content/about/membership/images/NCSA.png new file mode 100644 index 00000000..c8799dea Binary files /dev/null and b/content/about/membership/images/NCSA.png differ diff --git a/content/about/membership/images/NWO-logo.jpeg b/content/about/membership/images/NWO-logo.jpeg new file mode 100644 index 00000000..da1c4eb6 Binary files /dev/null and b/content/about/membership/images/NWO-logo.jpeg differ diff --git a/content/about/membership/images/NeSI.png b/content/about/membership/images/NeSI.png new file mode 100644 index 00000000..f29fbbb0 Binary files /dev/null and b/content/about/membership/images/NeSI.png differ diff --git a/content/membership/ReSAFoundingMembersSquare.jpg b/content/about/membership/images/ReSAFoundingMembersSquare.jpg similarity index 100% rename from content/membership/ReSAFoundingMembersSquare.jpg rename to content/about/membership/images/ReSAFoundingMembersSquare.jpg diff --git a/static/images/ReSAOrganisationalMember.jpg b/content/about/membership/images/ReSAOrganisationalMember.jpg similarity index 100% rename from static/images/ReSAOrganisationalMember.jpg rename to content/about/membership/images/ReSAOrganisationalMember.jpg diff --git a/content/about/membership/images/Simons-Foundation.jpg b/content/about/membership/images/Simons-Foundation.jpg new file mode 100644 index 00000000..39f7d772 Binary files /dev/null and b/content/about/membership/images/Simons-Foundation.jpg differ diff --git a/content/about/membership/images/Sloan-logo.png b/content/about/membership/images/Sloan-logo.png new file mode 100644 index 00000000..cd1258d1 Binary files /dev/null and b/content/about/membership/images/Sloan-logo.png differ diff --git a/content/about/membership/images/Stradini_logo_ENG_vert-RGB.jpg b/content/about/membership/images/Stradini_logo_ENG_vert-RGB.jpg new file mode 100644 index 00000000..b5159ebd Binary files /dev/null and b/content/about/membership/images/Stradini_logo_ENG_vert-RGB.jpg differ diff --git a/content/about/membership/images/The_Kavli_Foundation_Logo_White_Red.png b/content/about/membership/images/The_Kavli_Foundation_Logo_White_Red.png new file mode 100644 index 00000000..61a57eb1 Binary files /dev/null and b/content/about/membership/images/The_Kavli_Foundation_Logo_White_Red.png differ diff --git a/content/about/membership/images/UKRI_logo.png b/content/about/membership/images/UKRI_logo.png new file mode 100644 index 00000000..9d9b596f Binary files /dev/null and b/content/about/membership/images/UKRI_logo.png differ diff --git a/content/about/membership/images/USRSE_logo.png b/content/about/membership/images/USRSE_logo.png new file mode 100644 index 00000000..46f23b57 Binary files /dev/null and b/content/about/membership/images/USRSE_logo.png differ diff --git a/content/about/membership/images/Volkswagen.jpg b/content/about/membership/images/Volkswagen.jpg new file mode 100644 index 00000000..5386afde Binary files /dev/null and b/content/about/membership/images/Volkswagen.jpg differ diff --git a/content/about/membership/images/Wellcome_logo_Black.jpg b/content/about/membership/images/Wellcome_logo_Black.jpg new file mode 100644 index 00000000..27212eb4 Binary files /dev/null and b/content/about/membership/images/Wellcome_logo_Black.jpg differ diff --git a/content/about/membership/images/nesc-transparent.png b/content/about/membership/images/nesc-transparent.png new file mode 100644 index 00000000..206eb4dc Binary files /dev/null and b/content/about/membership/images/nesc-transparent.png differ diff --git a/content/about/membership/images/nesc.png b/content/about/membership/images/nesc.png new file mode 100644 index 00000000..7acafd27 Binary files /dev/null and b/content/about/membership/images/nesc.png differ diff --git a/content/about/membership/images/schmidtsciences_primary_color.png b/content/about/membership/images/schmidtsciences_primary_color.png new file mode 100644 index 00000000..433e718b Binary files /dev/null and b/content/about/membership/images/schmidtsciences_primary_color.png differ diff --git a/content/about/membership/images/ssi_logo_with_name-small2.png b/content/about/membership/images/ssi_logo_with_name-small2.png new file mode 100644 index 00000000..7a830fe9 Binary files /dev/null and b/content/about/membership/images/ssi_logo_with_name-small2.png differ diff --git a/content/our-team/members/CSS_square.png b/content/about/our-team/CSS_square.png similarity index 100% rename from content/our-team/members/CSS_square.png rename to content/about/our-team/CSS_square.png diff --git a/content/our-team/members/Jyoti_square.jpeg b/content/about/our-team/Jyoti_square.jpeg similarity index 100% rename from content/our-team/members/Jyoti_square.jpeg rename to content/about/our-team/Jyoti_square.jpeg diff --git a/content/about/our-team/_index.md b/content/about/our-team/_index.md new file mode 100644 index 00000000..af5b8419 --- /dev/null +++ b/content/about/our-team/_index.md @@ -0,0 +1,164 @@ +--- +title: +date: 2025-06-03 +type: landing + +sections: + - block: + content: + title: | + Our Team + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + - block: markdown + content: + title: ReSA Team + subtitle: '' + text: | +
+
+
+
+
+ +
+

Dr Michelle Barker

+

Director

+

Lives In Australia

+ +

+ + + + + + +

+

Michelle co-founded ReSA in 2019 and brings extensive expertise in open science, research software, skills and infrastructure. As a sociologist, Michelle is passionate about building collaborative partnerships to achieve system change. + She serves on advisory boards including for the European Virtual Institute for Research Software Excellence (EVERSE) and the Research Data Alliance Organisational Advisory Board. As a consultant in the field of open science her roles have included chairing the OECD expert group on digital skills for the research sector and co-editing the European Open Science Cloud report, Digital Skills for FAIR and Open Science. + Michelle is a former Director of the Australian Research Data Commons, where she led the strategic planning for the Australian government’s $180 million, five-year investment in ARDC, and the national research software infrastructure investment program. Email Michelle Barker.

+
+
+
+ +
+

Jyoti Bhogal

+

Community Manager & Community Engagement Partner (Asia)

+

Lives in India

+ +

+ + + + + + + + + +

+

Jyoti joined ReSA in 2024 as a Community Manager and Community Engagement Partner for Asia, supported by a grant from the Alfred P. Sloan Foundation. + She is a statistician by training, having 4+ years of specialised experience in clinical trial software development and data management. She is based in India. In 2021, she co-founded the Research Software Engineering (RSE) Asia Association through the Open Life Science (OLS) program (cohort-4) , with the mission to promote and build the RSE community and profession in the Asian region while also fostering global collaborations. + Jyoti has been a PyData Global Impact scholar (2021). She is a keen advocate of open source and open science and actively engages and contributes to these communities locally and internationally. + Email Jyoti Bhogal.

+
+
+
+ +
+

Kim Hartley

+

Program Manager

+

Lives in Canada

+ +

+ + + + + + +

+

Kim joined ReSA in 2022, with support from the Digital Research Alliance of Canada, to facilitate the Research Software Funders Forum, a formal mechanism for international funding organisations to collaborate. + Kim supports the Funders Forum by engaging the community in collaborative activities designed to share practices and address common challenges, with the + intention of advancing the research software ecosystem. + A social anthropologist by training, Kim brings a passion for understanding the ways in which people live in different social and cultural settings + globally to her work managing communities. She has extensive experience in academic research administration, including managing research ethics boards, + advising diverse stakeholders, and building partnerships. Through her work in the broader public sector, Kim has facilitated a variety of research, + scholarly, and creative activities. + Email Kim Hartley.

+
+ +
+
+
+
+ +
+

Talarify

+

Community Engagement Partner (Africa)

+

Lives In South Africa

+ +

+ + + + + + + + + +

+

​​Talarify joined ReSA in 2023 to support community growth in Africa, with funding by a grant from the Chan Zuckerberg Initiative. + The South African-based consulting company has been involved in numerous continental initiatives related to research software, including The Carpentries, Africa R Users, and afrimapr. It has also been engaged in global Research Software Engineering (RSE) initiatives such as the International RSE Survey, and since 2022 has led RSSE-Africa meetups, member showcases, and more. Through their involvement in these initiatives, the Talarify team has learned much about the local communities and has established connections with researchers involved in coding and research infrastructure across the continent. + Talarify executive director, Anelda van der Walt has a background in bioinformatics and 20 years of experience in supporting the development of digital and computational research skills and communities and bridging the Global North and South. + Email Anelda at Talarify.

+
+
+
+ +
+

Code for Science & Society

+

Fiscal Sponsor

+ +

+ + + + + + + + + + +

+

Code for Science and Society (CS&S) is ReSA’s fiscal sponsor. CS&S partner with leaders across public interest technology through comprehensive fiscal sponsorship. Projects in the fiscal sponsorship program are supported with financial and operational services. Their approach includes strategic support to develop governance, sustainability, and community strategies. + Email CS&S.

+
+ +
+
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + +--- diff --git a/content/our-team/members/kim_sq.jpg b/content/about/our-team/kim_sq.jpg similarity index 100% rename from content/our-team/members/kim_sq.jpg rename to content/about/our-team/kim_sq.jpg diff --git a/content/our-team/michelle.jpg b/content/about/our-team/michelle.jpg similarity index 100% rename from content/our-team/michelle.jpg rename to content/about/our-team/michelle.jpg diff --git a/content/our-team/members/talarify-people.png b/content/about/our-team/talarify-people.png similarity index 100% rename from content/our-team/members/talarify-people.png rename to content/about/our-team/talarify-people.png diff --git a/content/about/stakeholders/_index.md b/content/about/stakeholders/_index.md new file mode 100644 index 00000000..b0f0da2a --- /dev/null +++ b/content/about/stakeholders/_index.md @@ -0,0 +1,60 @@ +--- +title: +date: 2025-04-23 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Stakeholders + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + - block: markdown + content: + title: + text: | +
+
+ ReSA engages multiple stakeholder groups across the international research software community to collaborate to achieve common goals. ReSA’s community encompasses many relevant research software organisations, initiatives, and communities that have a national or regional focus, disciplinary focus, or thematic focus (such as software citation or representation of RSEs). + + Our stakeholders include: + + * **Funders (e.g., government, industry):** Leadership of a [research software funders community](/forums/funders-forum/) that has engaged 60+ funding organisations in its goal to address common challenges and better coordinate investment globally, including development of the [Amsterdam Declaration on Funding Research Software Sustainability (ADORE.software)](https://adore.software/). + * **Policy makers (e.g., government, publishers, infrastructure providers, research organisations):** Engaging in the drafting of key international policy documents from [UNESCO](https://en.unesco.org/science-sustainable-future/open-science/recommendation) and [OECD](https://www.oecd.org/en/publications/oecd-principles-and-guidelines-for-access-to-research-data-from-public-funding_9789264034020-en-fr.html), which has led to the inclusion and recognition of research software as a crucial part of open science. + * **Research software engineering associations (e.g., regional, national):** Supporting the RSE community as secretariat for the [International Council of RSE Associations](https://researchsoftware.org/council.html); compiling a list of [resources on how to create an RSE group (within an organisation) or association (national, etc)](https://ogyaqy.clicks.mlsend.com/tj/cl/eyJ2Ijoie1wiYVwiOjc3ODEyOSxcImxcIjoxMzkxMzUzODY4NzUwNjk3OTUsXCJyXCI6MTM5MTM1Mzk4MDg0MzQ3MDk3fSIsInMiOiI3ZjUzNTJlYTM3ZTZiZjgyIn0); and contributing to [RSE research](/blog/2024-09-23/). + * **Research software infrastructure providers (e.g,. for profit and not for profit):** Co-chairing the [Research Software Infrastructure Forum](/forums/rsi-forum/) to consider how to collectively address common challenges. + * **University consortia:** Facilitating [Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/members/all-members/), a joint ReSA and [Research Data Alliance (RDA)](https://www.rd-alliance.org/) working group to help build our collection of [institutional policies](/resource/software-policies/) and consider how to better share these with interested stakeholders. + * **Publishers (e.g., for profit and not for profit):** Supporting the ReSA task force on [code availability by publishers](/taskforces/) to engage publishers in the coordination needed to gain wide-scale cultural change. + * **Thematic communities:** Co-leading the drafting of the [FAIR for Research Software Principles](https://www.nature.com/articles/s41597-022-01710-x) (FAIR4RS) which engaged 500+ community members; with outcomes documented in a [two-year adoption update](https://doi.org/10.5281/zenodo.10816032); and supporting ReSA [task forces](/taskforces/) on [Actionable Guidelines for Making Research Software FAIR](https://drive.google.com/drive/u/0/folders/15srfB15eg9I5jKTSTMF_MlFZfGwX8qx8), and [FAIR4RS Review](https://drive.google.com/drive/u/0/folders/1YZn-oJ85eStIwBqymB6D2sOxrnG0Jm7A) that aims to understand where the principles have and have not been adopted, and why. + * **Research on research software:** Co-authoring a [position paper](https://doi.org/10.5281/zenodo.13350747) on the criticality of research software in AI-driven research. + +
+ +
+ stakeholders +
+
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- diff --git a/content/stakeholders/stakeholders.png b/content/about/stakeholders/images/stakeholders.png similarity index 100% rename from content/stakeholders/stakeholders.png rename to content/about/stakeholders/images/stakeholders.png diff --git a/content/admin/index.md b/content/admin/index.md new file mode 100644 index 00000000..c3196dd3 --- /dev/null +++ b/content/admin/index.md @@ -0,0 +1,8 @@ +--- +# Generate Decap CMS +type: decap_cms +private: true +outputs: + - decap_cms_config + - HTML +--- diff --git a/content/blog/2020-03/index.md b/content/blog/2020-03/index.md index 21a6dbf2..d4631de7 100644 --- a/content/blog/2020-03/index.md +++ b/content/blog/2020-03/index.md @@ -1,48 +1,19 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog", "Task force"] - -title = "The Research Software Alliance (ReSA) and the community landscape" -#subtitle = "" -title_align = "left" - -display_date = true -date = "2020-03-11" -author = ["Daniel S. Katz", "Michelle Barker", "Paula Andrea Martinez", "Hartwig Anzt", "Alejandra Gonzalez-Beltran", "Tom Bakker"] - -[sidebar] - title = "Important Links" - align = "right" - #sticky = true # Default is false - content = """ - * [List of research software communities](https://doi.org/10.5281/zenodo.3699950) - * NLeSC [blog post](https://blog.esciencecenter.nl/the-research-software-alliance-resa-and-the-community-landscape-9b8a6290ebb3)SSI [blog post](https://www.software.ac.uk/blog/2020-03-11-research-software-alliance-resa-and-community-landscape) - * SSI [blog post](https://www.software.ac.uk/blog/2020-03-11-research-software-alliance-resa-and-community-landscape) - * URSSI [blog post](https://urssi.us/blog/2020/03/11/the-research-software-alliance-resa-and-the-community-landscape/) - * US RSE [blog post](https://us-rse.org/blog/2020/urssi-us/the-research-software-alliance-resa-and-the-community-landscape/) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ - -[asset] - image = "landscape.jpg" - text = "landscape" -+++ +--- +title: "The Research Software Alliance (ReSA) and the community landscape" +date: 2020-03-11 +authors: + - "" +categories: + - Blog + - Task force +summary: "Read more..." +draft: false +--- DOI: [10.5281/zenodo.3699950](https://doi.org/10.5281/zenodo.3699950) Cross-posted on 11 March 2020 by the [Netherlands eScience Centre](https://blog.esciencecenter.nl/the-research-software-alliance-resa-and-the-community-landscape-9b8a6290ebb3), [Software Sustainability Institute](https://www.software.ac.uk/blog/2020-03-11-research-software-alliance-resa-and-community-landscape), [US Research Software Sustainability Institute](https://urssi.us/blog/2020/03/11/the-research-software-alliance-resa-and-the-community-landscape/) and [US Research Software Engineering](https://us-rse.org/blog/2020/urssi-us/the-research-software-alliance-resa-and-the-community-landscape/) -Photo from Pixabay - - - -The Research Software Alliance (ReSA) and the Community Landscape ------------------------------------------------------------------ - _March 11, 2020_ Authors: [Daniel S. Katz](http://orcid.org/0000-0001-5934-7525), @@ -52,13 +23,18 @@ Authors: [Daniel S. Katz](http://orcid.org/0000-0001-5934-7525), [Alejandra Gonzalez-Beltran](https://orcid.org/0000-0003-3499-8262), and [Tom Bakker](https://orcid.org/0000-0002-6465-5589) +
+ landscape +
+Photo from Pixabay + ReSA’s mission is to bring research software communities together to collaborate on the advancement of research software. Its vision is to have research software recognized and valued as a fundamental and vital component of research worldwide. Given our mission, there are multiple reasons that it’s important for us to understand the landscape of communities that are involved with software, in aspects such as preservation, citation, career paths, productivity, and sustainability. One of these reasons is that ReSA seeks to be a link between these communities, which requires identifying and understanding them. We want to be sure that there aren’t significant community organizations that we don’t know about to involve in our work. Also, identifying where there are gaps will help us create the opportunities and communities of practices as required. When thinking about these communities, it’s clear that in addition to those that focus on software, there are others for which software is just a small part of their interest. Some examples are communities that focus on open science, reproducibility, roles and careers for people who are less visible in research, publishing and review, and other types of scholarly products and digital objects. ReSA also wants to define how we fit and interact with that broader scholarly landscape. ### How was this work undertaken? -In September 2019, a [ReSA taskforce](https://www.researchsoft.org/taskforces/) came together to map the software community landscape, consisting of the authors of this blog. This group distributed a survey to ReSA subscribers to identify other groups interested in software. Other useful sources included: +In September 2019, a [ReSA taskforce](/taskforces/) came together to map the software community landscape, consisting of the authors of this blog. This group distributed a survey to ReSA subscribers to identify other groups interested in software. Other useful sources included: * [Netherlands eScience Center: Awesome-research-software-registries](https://github.com/NLeSC/awesome-research-software-registries/blob/master/README.md) by Jurriaan Spaaks * [eResearch-meeting-list](https://github.com/jamespjh/eResearch-meeting-list/tree/master) by James Hetherington @@ -87,7 +63,7 @@ There were a range of interesting outcomes of the analysis: ### What are the next steps? -We invite readers to continue to add or make corrections to the [ReSA list of research software communities](https://docs.google.com/spreadsheets/d/15JHqOxR4HIKHYe821IPvbxIuXP1zMjXKGEIJwB-GPqE/edit#gid=0) by making comments in the list, which will continue to be curated by ReSA. We are also interested to hear from community members who would like to engage with us in writing a landscape paper based on further analysis and work. This could address questions such as what are the axes that create the space, where do the currently-known organizations fit in the space, and are there gaps where no organization is currently working? We also invite readers to consider involvement in other ReSA activities, including [Taskforces](https://www.researchsoft.org/taskforces/). +We invite readers to continue to add or make corrections to the [ReSA list of research software communities](https://docs.google.com/spreadsheets/d/15JHqOxR4HIKHYe821IPvbxIuXP1zMjXKGEIJwB-GPqE/edit#gid=0) by making comments in the list, which will continue to be curated by ReSA. We are also interested to hear from community members who would like to engage with us in writing a landscape paper based on further analysis and work. This could address questions such as what are the axes that create the space, where do the currently-known organizations fit in the space, and are there gaps where no organization is currently working? We also invite readers to consider involvement in other ReSA activities, including [Taskforces](/taskforces/). ### Conclusion @@ -95,4 +71,15 @@ The ever-growing number of constituents of the research software community both ReSA aims to coordinate across these efforts to leverage investments, to achieve the shared long-term goal of research software valued as a fundamental and vital component of research worldwide. Subscribe to the [ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) to stay up-to-date on our activities. -_Want to discuss this post with us? Send us an email via [contact us](https://www.researchsoft.org/contact/) or a message via [Twitter @researchsoft](https://twitter.com/researchsoft)._ +### Important Links + * [List of research software communities](https://doi.org/10.5281/zenodo.3699950) + * NLeSC [blog post](https://blog.esciencecenter.nl/the-research-software-alliance-resa-and-the-community-landscape-9b8a6290ebb3)SSI [blog post](https://www.software.ac.uk/blog/2020-03-11-research-software-alliance-resa-and-community-landscape) + * SSI [blog post](https://www.software.ac.uk/blog/2020-03-11-research-software-alliance-resa-and-community-landscape) + * URSSI [blog post](https://urssi.us/blog/2020/03/11/the-research-software-alliance-resa-and-the-community-landscape/) + * US RSE [blog post](https://us-rse.org/blog/2020/urssi-us/the-research-software-alliance-resa-and-the-community-landscape/) + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news) + * [ReSA resources](/resa-resources) + * [Contact us](/contact) + +_Want to discuss this post with us? Send us an email via [contact us](/about/contact/) or a message via [Twitter @researchsoft](https://twitter.com/researchsoft)._ diff --git a/content/blog/2020-06/index.md b/content/blog/2020-06/index.md index 8073b4fb..ae77f92f 100644 --- a/content/blog/2020-06/index.md +++ b/content/blog/2020-06/index.md @@ -1,46 +1,20 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog", "Task force"] - -title = "Evidence for the importance of research software" -#subtitle = "" -title_align = "left" - -display_date = true -date = "2020-06-08" -author = ["Michelle Barker", "Daniel S. Katz", "Alejandra Gonzalez-Beltran"] - -[sidebar] - title = "Important Links" - align = "right" - #sticky = true # Default is false - content = """ - * [Evidence for the importance of research software](https://zenodo.org/record/3884311) - * NLeSC [blog post](https://blog.esciencecenter.nl/evidence-for-the-importance-of-research-software-1cb4a49077f3) - * SSI [blog post](https://www.software.ac.uk/blog/2020-06-08-evidence-importance-research-software) - * URSSI [blog post](http://urssi.us/blog/2020/06/08/evidence-for-the-importance-of-research-software/) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ - -[asset] - image = "blackhole.jpg" - text = "Black hole" -+++ +--- +title: "Evidence for the importance of research software" +date: 2020-06-08 +authors: + - "" +categories: + - Blog + - Task force +summary: "Read more..." +draft: false +--- [DOI: 10.5281/zenodo.3884311](https://zenodo.org/record/3884311) Cross-posted on 8 June 2020 by the [Netherlands eScience Centre](https://blog.esciencecenter.nl/evidence-for-the-importance-of-research-software-1cb4a49077f3), [Software Sustainability Institute](https://www.software.ac.uk/blog/2020-06-08-evidence-importance-research-software), and [US Research Software Sustainability Institute](http://urssi.us/blog/2020/06/08/evidence-for-the-importance-of-research-software/) -Photo from Wikimedia - -Evidence for the importance of research software ------------------------------------------------------------------ - _June 8, 2020_ Authors: [Michelle Barker](https://orcid.org/0000-0002-3623-172X), @@ -49,7 +23,12 @@ Authors: [Michelle Barker](https://orcid.org/0000-0002-3623-172X), This blog analyses work evidencing the importance of research software to research outcomes, to enable the research software community to find useful evidence to share with key influencers. This analysis considers papers relating to meta-research, policy, community, education and training, research breakthroughs and specific software. -The Research Software Alliance (ReSA) [Taskforce for the importance of research software](https://www.researchsoft.org/taskforces/) was formed initially to bring together existing evidence showing the importance of research software in the research process. This kind of information is critical to achieving ReSA’s vision to have research software recognised and valued as a fundamental and vital component of research worldwide. +
+ Black hole +
+Photo from Wikimedia + +The Research Software Alliance (ReSA) [Taskforce for the importance of research software](/taskforces/) was formed initially to bring together existing evidence showing the importance of research software in the research process. This kind of information is critical to achieving ReSA’s vision to have research software recognised and valued as a fundamental and vital component of research worldwide. #### Methodology @@ -121,4 +100,15 @@ We encourage readers to submit additional resources to the ReSA resources list, * Add it directly to the ReSA [Zotero group library](https://www.zotero.org/groups/2400609/resa/library) (requires Zotero account). -_Want to discuss this post with us? Send us an email via [contact us](https://www.researchsoft.org/contact/) or a message via [Twitter @researchsoft](https://twitter.com/researchsoft)._ +### Important Links + + * [Evidence for the importance of research software](https://zenodo.org/record/3884311) + * NLeSC [blog post](https://blog.esciencecenter.nl/evidence-for-the-importance-of-research-software-1cb4a49077f3) + * SSI [blog post](https://www.software.ac.uk/blog/2020-06-08-evidence-importance-research-software) + * URSSI [blog post](http://urssi.us/blog/2020/06/08/evidence-for-the-importance-of-research-software/) + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news) + * [ReSA resources](/resa-resources) + * [Contact us](/contact) + +_Want to discuss this post with us? Send us an email via [contact us](/about/contact/) or a message via [Twitter @researchsoft](https://twitter.com/researchsoft)._ diff --git a/content/blog/2021-12/index.md b/content/blog/2021-12/index.md index 608a7761..0fc850f9 100644 --- a/content/blog/2021-12/index.md +++ b/content/blog/2021-12/index.md @@ -1,55 +1,32 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog", "Recommendations"] - -title = "Research software is essential for research data, so how should governments respond?" -#subtitle = "" -title_align = "left" - -display_date = true -date = "2021-12-09" -author = ["Michelle Barker", "Neil Chue Hong", "Daniel S. Katz", "Mark Leggott", "Andrew Treloar", "Joris van Eijnatten", "Selina Aragon"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = true # Default is false - content = """ - - * Table of Contents - * [International adoption](https://www.researchsoft.org/blog/2021-12/#international-adoption) - * [National landscape analysis](https://www.researchsoft.org/blog/2021-12/#national-landscape-analysis) - * [Key recommendations from ReSA](https://www.researchsoft.org/blog/2021-12/#key-recommendations-from-resa) - - * Research software is essential for research data, so how should governments respond?. Zenodo. [https://doi.org/10.5281/zenodo.5762703](https://doi.org/10.5281/zenodo.5762703) - * SSI [news post](https://software.ac.uk/news/research-software-alliance-calls-governments-improve-research-software-policies) - * NLeSC [news post](https://www.esciencecenter.nl/news/research-software-alliance-calls-on-governments-to-improve-research-software-policies/) - - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ - -[asset] - image = "light.jpg" - text = "Team thinking together as a diverse group of people coming together joining hands into the shape of an inspirational light bulb 3D elements" -+++ - -Image by [Lightspring](https://www.shutterstock.com/image-illustration/team-thinking-together-diverse-group-people-1553419640) on Shutterstock. +--- +title: "Research software is essential for research data, so how should governments respond?" +date: 2021-12-09 +authors: + - "" + +categories: + - Blog + - Recommendations +summary: "Read more..." +draft: false +--- Cross-posted on 9 December 2021 by the [Netherlands eScience Centre](https://www.esciencecenter.nl/news/research-software-alliance-calls-on-governments-to-improve-research-software-policies/) and the [Software Sustainability Institute](https://software.ac.uk/news/research-software-alliance-calls-governments-improve-research-software-policies). [DOI: 10.5281/zenodo.5762703](https://doi.org/10.5281/zenodo.5762703) -Research software is essential for research data, so how should governments respond? ----------------------------------------------------------------- _December 9, 2021_ Authors: [Michelle Barker](https://www.linkedin.com/in/michelledbarker/), [Neil Chue Hong](https://www.software.ac.uk/about/staff/person/neil-chue-hong), [Daniel S. Katz](https://danielskatz.org/), [Mark Leggott](https://www.linkedin.com/in/markleggott/?originalSubdomain=ca)[,](https://www.linkedin.com/in/markleggott/?originalSubdomain=ca) [Andrew Treloar](https://andrew.treloar.net/), [Joris van Eijnatten,](https://www.esciencecenter.nl/team/prof-dr-joris-van-eijnatten/)[ ](https://www.esciencecenter.nl/team/prof-dr-joris-van-eijnatten/)[Selina Aragon](https://www.software.ac.uk/about/staff/person/selina-aragon). +
+ Team thinking together as a diverse group of people coming together joining hands into the shape of an inspirational light bulb 3D elements +
+ +Image by [Lightspring](https://www.shutterstock.com/image-illustration/team-thinking-together-diverse-group-people-1553419640) on Shutterstock. + Research software is becoming increasingly valued in the research ecosystem, and international and national policy practices are evolving to reflect this. Studies have shown that [33 percent of international research](https://www.oecd-ilibrary.org/science-and-technology/charting-the-digital-transformation-of-science_1b06c47c-en) produces new code (see Figure 3.4), [90 percent of UK researchers](https://doi.org/10.5281/zenodo.14809) acknowledge software as important for their research, while [95 percent of US postdoctoral students](https://figshare.com/articles/journal_contribution/Track_1_Paper_Surveying_the_U_S_National_Postdoctoral_Association_Regarding_Software_Use_and_Training_in_Research/5328442/3) use research software. Several governments are now expanding their focus on research software, in line with increasing international recognition of the crucial role that research software plays in research outcomes. Key international bodies, such as the Organisation for Economic Co-operation and Development (OECD) and the United Nations Educational, Scientific and Cultural Organisation (UNESCO), have recently incorporated research software into their recommendations. Going beyond the requirements of the UNESCO and OECD, the vision of the [Research Software Alliance](https://www.researchsoft.org/) (ReSA) and its collaborators is that research software and those who develop and maintain it are recognised and valued as fundamental and vital to research worldwide. @@ -158,8 +135,23 @@ There is also strong consensus that the development of research software must be To advance this agenda across the research community as a whole requires both policy development and implementation. While there are clear recommendations on how national research software policies need to develop, and examples of how some countries are implementing increased recognition of the importance of research software and those who maintain it, different countries are at different stages of development. -ReSA aims to establish collaborations that support this work, including the [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/). This collaboration of organisations that are committed to supporting research software, and those who develop it, will convene in early 2022 with investment from the [Alfred](https://sloan.org/programs/digital-technology/better-software-for-science)[ P. Sloan Foundation](https://sloan.org/programs/digital-technology/better-software-for-science). The Forum will create a formal mechanism to share funding practices, learn from each other, and propose methods to better tackle common challenges such as resourcing for maintenance of research software investments. +ReSA aims to establish collaborations that support this work, including the [Research Software Funders Forum](/forums/funders-forum/). This collaboration of organisations that are committed to supporting research software, and those who develop it, will convene in early 2022 with investment from the [Alfred](https://sloan.org/programs/digital-technology/better-software-for-science)[ P. Sloan Foundation](https://sloan.org/programs/digital-technology/better-software-for-science). The Forum will create a formal mechanism to share funding practices, learn from each other, and propose methods to better tackle common challenges such as resourcing for maintenance of research software investments. ReSA encourages national governments to review their policies and implementation strategies in light of OECD, UNESCO, and ReSA recommendations. To support the work of individual countries, a more detailed analysis of how a range of countries are progressing should also be undertaken, based on a framework such as the maturity matrix that [Science Europe](https://www.scienceeurope.org/media/b3odxx3s/se-practical-guide-sustainable-research-data.pdf) uses to assess the sustainability of the research data initiatives. This could provide organisations such as OECD and UNESCO with evidence of how government policies are implementing their recommendations and identify geographic regions needing additional support. -_Want to discuss this post with us? Send us an email via [contact us](https://www.researchsoft.org/contact/) or a message via [Twitter @researchsoft](https://twitter.com/researchsoft)._ +### Important Links + * Table of Contents + * [International adoption](/blog/2021-12/#international-adoption) + * [National landscape analysis](/blog/2021-12/#national-landscape-analysis) + * [Key recommendations from ReSA](/blog/2021-12/#key-recommendations-from-resa) + + * Research software is essential for research data, so how should governments respond?. Zenodo. [https://doi.org/10.5281/zenodo.5762703](https://doi.org/10.5281/zenodo.5762703) + * SSI [news post](https://software.ac.uk/news/research-software-alliance-calls-governments-improve-research-software-policies) + * NLeSC [news post](https://www.esciencecenter.nl/news/research-software-alliance-calls-on-governments-to-improve-research-software-policies/) + + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news/) + * [ReSA resources](/resource/resa-resources/) + * [Contact us](/about/contact/) + +_Want to discuss this post with us? Send us an email via [contact us](/about/contact/) or a message via [Twitter @researchsoft](https://twitter.com/researchsoft)._ \ No newline at end of file diff --git a/content/blog/2022-02-24/index.md b/content/blog/2022-02-24/index.md index fa810cac..38263825 100644 --- a/content/blog/2022-02-24/index.md +++ b/content/blog/2022-02-24/index.md @@ -1,46 +1,18 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] +--- +title: "Overview of research software funding landscape" +date: 2022-02-24 +authors: + - "" -title = "Overview of research software funding landscape" -#subtitle = "" -title_align = "left" +categories: + - Blog -display_date = true -date = "2022-02-24" -author = ["Michelle Barker", "Daniel S. Katz"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = true # Default is false - content = """ - - * Table of Contents - * [Methodology](https://www.researchsoft.org/blog/2022-02-24/#methodology) - * [Research software funding](https://www.researchsoft.org/blog/2022-02-24/#research-software-funding) - * [Discussion](https://www.researchsoft.org/blog/2022-02-24/#discussion) - * [Future Work](https://www.researchsoft.org/blog/2022-02-24/#future-work) - * [Acknowledgements](https://www.researchsoft.org/blog/2022-02-24/#acknowledgements) - * [References](https://www.researchsoft.org/blog/2022-02-24/#references) - - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ - -[asset] - image = "funding.png" - text = "Funding icon" -+++ - -Image courtesy of icon king1 from [freeicons.io](https://freeicons.io/finances-and-banking/croudfunding-group-funding-icon-1312). +summary: "Read more..." +draft: false +--- Posted on 24 February 2022. -Overview of research software funding landscape ----------------------------------------------------------------- _February 24, 2022_ @@ -50,6 +22,12 @@ DOI: [https://www.doi.org/10.5281/zenodo.6102487](https://www.doi.org/10.5281/ze This report aims to provide a brief overview of the funding landscape for research software throughout its life cycle. This report explains the methodology, considers available information, and suggests future work. +
+ Funding icon +
+ +Image courtesy of icon king1 from [freeicons.io](https://freeicons.io/finances-and-banking/croudfunding-group-funding-icon-1312). + # Methodology There are multiple ways in which analysis of research software funding could be undertaken, such as by type of funder1, by country2, research discipline3, type of output4, etc. Life cycle stages were chosen here as analyses have repeatedly identified challenges in obtaining funding for the life cycle stage focused on maintaining research software (Knowles, Mateen, and Yehudi 2021; Sufi et al. 2020), yet there is little international data to support this. @@ -203,4 +181,19 @@ UKRI. 2020. "The UK's Research and Innovation Infrastructure: Landscape [4](#sdfootnote4anc) Open hardware funding can be classified as supporting outputs in four categories: community-related outputs, documentation, hardware and usage or adoption (GOSH 2021b). ---- -_Want to discuss this post with us? Send us an email via [contact us](https://www.researchsoft.org/contact/) or a message via [Twitter @researchsoft](https://twitter.com/researchsoft)._ + +### Important links + * Table of Contents + * [Methodology](/blog/2022-02-24/#methodology) + * [Research software funding](/blog/2022-02-24/#research-software-funding) + * [Discussion](/blog/2022-02-24/#discussion) + * [Future Work](/blog/2022-02-24/#future-work) + * [Acknowledgements](/blog/2022-02-24/#acknowledgements) + * [References](/blog/2022-02-24/#references) + + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news) + * [ReSA resources](/resa-resources) + * [Contact us](/contact) + +_Want to discuss this post with us? Send us an email via [contact us](/about/contact/) or a message via [Twitter @researchsoft](https://twitter.com/researchsoft)._ \ No newline at end of file diff --git a/content/blog/2022-02/index.md b/content/blog/2022-02/index.md index 5f966fe7..f8422cd3 100644 --- a/content/blog/2022-02/index.md +++ b/content/blog/2022-02/index.md @@ -1,38 +1,24 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog", "Press release"] - -title = "Meet our Founding Members!" -#subtitle = "" -title_align = "left" - -display_date = true -date = "2022-02-17" - -[sidebar] - title = "Important Links" - align = "right" - sticky = true # Default is false - content = """ - - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [ReSA Code of Conduct](https://www.researchsoft.org/code-of-conduct/) - * [Contact us](/contact) - """ - -[asset] - image = "ReSAFoundingMembers.jpg" - text = "In 2022 ReSA announced six Founding Members" -+++ +--- +title: "Meet our Founding Members!" +date: 2022-02-17 +authors: + - "" +categories: + - Blog + - Press release + +summary: "Read more..." +draft: false +--- + +
+ In 2022 ReSA announced six Founding Members +
Image courtesy of Bongkarn Thanyakij from Pexels via [canva](https://www.canva.com/media/MAD2q4Qf7GY). Cross-posted on 17 February 2022. -Meet our Founding Members! ----------------------------------------------------------------- _February 17, 2022_ @@ -52,11 +38,11 @@ Research software is increasingly valued in the research ecosystem, and internat In 2022, the ReSA Founding Members will provide a combination of funding and in-kind support totalling USD$365,000. This will support a multitude of community projects, including: -* [Vive la diffΓ©rence - research software engineers](https://www.researchsoft.org/events/2022-04/), a [Lorentz Center](https://www.lorentzcenter.nl/about-us.html) hybrid workshop in April 2022 to consider diversity, equity, and inclusion could be framed at the heart of research software engineering. -* Establishment of the [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/) to provide a formal mechanism for funders to share practices and consider how to address common challenges to achieve the significant cultural change needed across the research sector globally. Thirty funders from all over the world are participating in this initiative. +* [Vive la diffΓ©rence - research software engineers](/events/events-past/2022-04/), a [Lorentz Center](https://www.lorentzcenter.nl/about-us.html) hybrid workshop in April 2022 to consider diversity, equity, and inclusion could be framed at the heart of research software engineering. +* Establishment of the [Research Software Funders Forum](/forums/funders-forum/) to provide a formal mechanism for funders to share practices and consider how to address common challenges to achieve the significant cultural change needed across the research sector globally. Thirty funders from all over the world are participating in this initiative. * Expansion of the mapping of the research software community landscape to expand the [2020 analysis](https://doi.org/10.5281/zenodo.3699949) to include more geographic regions. Twelve experts from around the globe will provide information on the research software initiatives, events and funding opportunities in their own geographic regions. -To date, ReSA has been [supported](https://www.researchsoft.org/about-resa/) to achieve its aims through USD$420,000 in philanthropic funding from the Alfred P. Sloan Foundation, Chan Zuckerberg Initiative, Gordon and Betty Moore Foundation, and Wellcome Trust. This has enabled outcomes across the three ReSA themes of people, policy and infrastructure, that include: +To date, ReSA has been [supported](/about/) to achieve its aims through USD$420,000 in philanthropic funding from the Alfred P. Sloan Foundation, Chan Zuckerberg Initiative, Gordon and Betty Moore Foundation, and Wellcome Trust. This has enabled outcomes across the three ReSA themes of people, policy and infrastructure, that include: * People: Completion of the [ReSA People Roadmap](https://www.researchsoft.org/documents/people-roadmap.pdf) to facilitate identification and prioritization of the major issues related to people (or personnel) challenges faced by the research software community, including research software engineers. * Policy: Development of recommendations for policymakers, research organizations, funders and publishers on how to support research software (including in [response to COVID-19 challenges](https://zenodo.org/record/3932953#.Xx_f7Z4za70)). @@ -64,11 +50,17 @@ To date, ReSA has been [supported](https://www.researchsoft.org/about-resa/) to There are many ways to get involved with ReSA. In line with its mission, ReSA offers opportunities for community members representing multiple stakeholders to work together to achieve shared goals, which include: -* Joining [task forces](https://www.researchsoft.org/taskforces/) focused on specific activities -* Receiving updates through our regular [newsletter](https://www.researchsoft.org/news/) -* Helping to raise awareness of the importance of software in research through use of [ReSA resources](https://www.researchsoft.org/resa-resources/) -* Connecting with other community members at our [events](https://www.researchsoft.org/events/) -* [Contributing](https://www.researchsoft.org/contact/) ideas for task forces, events, newsletter items +* Joining [task forces](/taskforces/) focused on specific activities +* Receiving updates through our regular [newsletter](/news/) +* Helping to raise awareness of the importance of software in research through use of [ReSA resources](/resource/resa-resources/) +* Connecting with other community members at our [events](/events/events-current/) +* [Contributing](/../../about/contact/) ideas for task forces, events, newsletter items +### Important links + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news) + * [ReSA resources](/resource/resa-resources) + * [ReSA Code of Conduct](/about/code-of-conduct/) + * [Contact us](/about/contact) -_Want to discuss this post with us? Send us an email via [contact us](https://www.researchsoft.org/contact/) or a message via [Twitter @researchsoft](https://twitter.com/researchsoft)._ +_Want to discuss this post with us? Send us an email via [contact us](/about/contact/) or a message via [Twitter @researchsoft](https://twitter.com/researchsoft)._ \ No newline at end of file diff --git a/content/blog/2022-06/index.md b/content/blog/2022-06/index.md index abd76f2e..bd5aecc2 100644 --- a/content/blog/2022-06/index.md +++ b/content/blog/2022-06/index.md @@ -1,38 +1,22 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog", "Press release"] - -title = "FAIR Principles for Research Software Released" -#subtitle = "" -title_align = "left" - -display_date = true -date = "2022-06-21" -author = ["FAIR4RS Working Group Steering Committee"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = true # Default is false - content = """ - - * [FAIR Principles for Research Software version 1.0](https://doi.org/10.15497/RDA00068) - * [RDA Software Source Code Interest Group](https://www.rd-alliance.org/groups/software-source-code-ig) - * Please share news via social media using [#FAIR4RS](https://twitter.com/search?q=%23FAIR4RS) - * [FAIR4RS community in Zenodo](https://zenodo.org/communities/fair4rs/) - """ - -+++ +--- +title: "FAIR Principles for Research Software Released" +date: 2022-06-21 +authors: + - "" +categories: + - Blog + - Press release + +summary: "Read more..." +draft: false +--- Cross-posted on 21 June 2022. -FAIR Principles for Research Software Released ----------------------------------------------------------------- _June 21, 2022_ FAIR4RS Working Group Steering Committee - We are pleased to announce the release of version 1.0 of the FAIR Principles for Research Software (FAIR4RS Principles), after about 2 years of work by over 500 people. This work has been organized by the FAIR4RS Working Group, which was jointly convened by the [Research Data Alliance (RDA)](https://www.rd-alliance.org/), the [Research Software Alliance (ReSA)](https://www.researchsoft.org/), and [FORCE11](https://force11.org/). Similar to the [FAIR Guiding Principles for scientific data management and stewardship](https://www.go-fair.org/fair-principles/), the goal of the FAIR4RS Principles is to improve the sharing and reuse of research software, by making it Findable, Accessible, Interoperable, and Reusable. These principles are needed because specific characteristics of software β€” such as its executability, composite nature, and continuous evolution and versioning β€” make it necessary to revise and extend the FAIR data principles. The FAIR4RS Principles themselves, as well as explanation about them, are available as: @@ -48,3 +32,9 @@ We have now transferred governance of these principles to the [RDA Software Sour We encourage everyone to engage with the FAIR4RS Principles and look forward to seeing the benefits of their community-wide adoption. Please share news via social media using [#FAIR4RS](https://twitter.com/search?q=%23FAIR4RS), and continue to add resources to the [FAIR4RS community in Zenodo](https://zenodo.org/communities/fair4rs/). + +### Important links + * [FAIR Principles for Research Software version 1.0](https://doi.org/10.15497/RDA00068) + * [RDA Software Source Code Interest Group](https://www.rd-alliance.org/groups/software-source-code-ig) + * Please share news via social media using [#FAIR4RS](https://twitter.com/search?q=%23FAIR4RS) + * [FAIR4RS community in Zenodo](https://zenodo.org/communities/fair4rs/) \ No newline at end of file diff --git a/content/blog/2022-07/index.md b/content/blog/2022-07/index.md index 65457163..7fe09417 100644 --- a/content/blog/2022-07/index.md +++ b/content/blog/2022-07/index.md @@ -1,30 +1,20 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog", "Press release"] - -title = "Vive la diffΓ©rence - research software engineers" -subtitle = "A hybrid DEI-focused workshop" -title_align = "left" - -display_date = true -date = "2022-07-12" - -[sidebar] - title = "Important Links" - align = "right" - sticky = true # Default is false - content = """ - * [Lorentz Centre](https://www.lorentzcenter.nl/about-us.html) - * [Workshop Page](https://www.lorentzcenter.nl/vive-la-difference-research-software-engineers.html) - * [DOI: 10.5281/zenodo.6859709](https://zenodo.org/record/6859709#.YtY74OxBx24) - * [Community Forum calendar invite](https://drive.google.com/file/d/1b0Bd2OdKH5xRYf4HjclUot7lqKV4veU1/view) - """ +--- +title: "Vive la diffΓ©rence - research software engineers" +subtitle: "A hybrid DEI-focused workshop" +date: 2022-07-12 +authors: + - "" +categories: + - Blog + - Press release + +summary: "Read more..." +draft: false +--- -+++ _Cross-posted by [Better Scientific Software (BSSw)](https://bssw.io/blog_posts/vive-la-difference-research-software-engineers-a-hybrid-dei-focused-workshop) and ReSA_. -How can we reframe research software engineering (RSE) to place diversity, equity, and inclusion (DEI) as a central organising principle in the community? This compelling question was the impetus for the [_Vive la diffΓ©rence - research software engineers_](https://www.researchsoft.org/events/2022-04/) [workshop](https://zenodo.org/record/6816193#.Ys1kIezMJhG), a hybrid event that took place both in person at the [Lorentz Center](https://www.lorentzcenter.nl/about-us.html) in Leiden, the Netherlands, from 19-22 April 2022; and online from March to April 2022. The workshop brought together 40 participants from across the globe, including representatives from international RSE communities and others interested in DEI. +How can we reframe research software engineering (RSE) to place diversity, equity, and inclusion (DEI) as a central organising principle in the community? This compelling question was the impetus for the [_Vive la diffΓ©rence - research software engineers_](/events/events-past/2022-04/) [workshop](https://zenodo.org/record/6816193#.Ys1kIezMJhG), a hybrid event that took place both in person at the [Lorentz Center](https://www.lorentzcenter.nl/about-us.html) in Leiden, the Netherlands, from 19-22 April 2022; and online from March to April 2022. The workshop brought together 40 participants from across the globe, including representatives from international RSE communities and others interested in DEI. The workshop offered a unique opportunity for a broad range of stakeholders – who had not previously collaborated – to analyse best practices and available data, identify research opportunities, and share experiences in solving their own local challenges. The workshop aimed to address two key questions: (1) _What approaches to repositioning DEI as central to the RSE community will prove most promising?_ and (2) _Which combinations of social processes and supporting technology show effectiveness in advancing the community of RSE workers to direct research toward a future centred on DEI?_ @@ -46,7 +36,7 @@ ReSA is grateful to the Alfred P. Sloan Foundation, the Chan Zuckerberg Initiati A [full report](https://zenodo.org/record/6859709#.YtY74OxBx24) written and edited collectively by workshop participants has been published. Speakers' videos are available via ReSA's Lorentz Centre workshop YouTube [playlist](https://www.youtube.com/playlist?list=PL9LY1bVcxGJd8QhKQYgWd7jtArqrxw7oO). [Slides](https://drive.google.com/drive/u/0/folders/1zDauVIR5OSfU7Gt2pSNtb7AhZFdrpifN) are also publicly available. -If you're interested in exploring this topic and sharing information with others in the global research software community, please join ReSA's monthly [Community Forum](https://www.researchsoft.org/community-forum). The first call will take place on **19 July 11-12 UTC** ([convert to your timezone](https://www.timeanddate.com/worldclock/fixedtime.html?msg=Research+Software+Community+Forum&iso=20220719T11&p1=1440&ah=1)). Dr. Michelle Barker, ReSA Director, will give a short talk on the outcomes of the _Vive la diffΓ©rence - research software engineers_ workshop. To receive calendar invites and agendas for ReSA's monthly Community Forum meetings, please sign up [here](https://landing.mailerlite.com/webforms/landing/o1n4v3). +If you're interested in exploring this topic and sharing information with others in the global research software community, please join ReSA's monthly [Community Forum](/events/community-calls). The first call will take place on **19 July 11-12 UTC** ([convert to your timezone](https://www.timeanddate.com/worldclock/fixedtime.html?msg=Research+Software+Community+Forum&iso=20220719T11&p1=1440&ah=1)). Dr. Michelle Barker, ReSA Director, will give a short talk on the outcomes of the _Vive la diffΓ©rence - research software engineers_ workshop. To receive calendar invites and agendas for ReSA's monthly Community Forum meetings, please sign up [here](https://landing.mailerlite.com/webforms/landing/o1n4v3). **To join the July meeting:** @@ -57,3 +47,9 @@ https://us02web.zoom.us/j/2187873236?pwd=cXpmZXQzalhMcGlUN0J1bWUzdVM3QT09 Zoom ID: 2187873236 and (passcode: 446688) [Download a calendar invite](https://drive.google.com/file/d/1b0Bd2OdKH5xRYf4HjclUot7lqKV4veU1/view). + +### Important links + * [Lorentz Centre](https://www.lorentzcenter.nl/about-us.html) + * [Workshop Page](https://www.lorentzcenter.nl/vive-la-difference-research-software-engineers.html) + * [DOI: 10.5281/zenodo.6859709](https://zenodo.org/record/6859709#.YtY74OxBx24) + * [Community Forum calendar invite](https://drive.google.com/file/d/1b0Bd2OdKH5xRYf4HjclUot7lqKV4veU1/view) diff --git a/content/blog/2022-08/index.md b/content/blog/2022-08/index.md index 4c5dac8b..fa794eea 100644 --- a/content/blog/2022-08/index.md +++ b/content/blog/2022-08/index.md @@ -1,30 +1,16 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog", "Task force"] - -title = "FAIR for Research Software (FAIR4RS): A summary" -#subtitle = "" -title_align = "left" - -display_date = true -date = "2022-08-15" -authors = ["Daniel S. Katz", "Tom Honeyman", "Paula Andrea Martinez", "Michelle Barker", "Leyla Jael Castro", "Neil Chue Hong", "Morane Gruenpeter", "Jennifer Harrow", "Anna-Lena Lamprecht", "Carlos Martinez-Ortiz", "Fotis Psomopoulos"] - -[sidebar] - title = "Important Links" - align = "right" - #sticky = true # Default is false - content = """ - * [FAIR4 for Research Software completion article](https://www.researchsoft.org/blog/2022-06/) - * [FAIR4RS Principles v1.0 on Zenodo](https://doi.org/10.15497/RDA00068) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ - -+++ +--- +title: "FAIR for Research Software (FAIR4RS): A summary" +subtitle: "" +date: 2022-08-15 +authors: + - "" +categories: + - Blog + - Task force + +summary: "Read more..." +draft: false +--- _August, 2022_ @@ -32,7 +18,7 @@ Authors: Daniel S. Katz, Tom Honeyman, Paula Andrea Martinez, Michelle Barker, L ## Introduction -This blog post describes the need for, the work towards, and the [recent completion](https://www.researchsoft.org/blog/2022-06/) of version 1.0 of the FAIR Principles for Research Software ([FAIR4RS Principles v1.0](https://doi.org/10.15497/RDA00068)). It also briefly discusses the principles themselves, and how they differ from the FAIR data principles. It concludes with next steps that stakeholders can take to implement the principles. +This blog post describes the need for, the work towards, and the [recent completion](/blog/2022-06/) of version 1.0 of the FAIR Principles for Research Software ([FAIR4RS Principles v1.0](https://doi.org/10.15497/RDA00068)). It also briefly discusses the principles themselves, and how they differ from the FAIR data principles. It concludes with next steps that stakeholders can take to implement the principles. ## Need for FAIR principles for research software @@ -76,7 +62,6 @@ Overall, the FAIR4RS WG engaged about 500 people (from more than 110 organizatio As commonly happens in large groups, recognizing contributions and defining co-authorship rules is not an easy task, particularly when people from different communities with different practices for co-authorship order contribute at different stages of the process. All contributions, from joining the working group via signing up to the mailing list, to participating in subgroups, events, and consultations, to editing and authoring the FAIR4RS documents are recognized and recorded. Contributions at each stage are tracked according to the level of contribution, broadly in three categories: leadership roles, significant contributions (either by importance to the final documents or by consistent useful contributions), and other useful contributions. Contributors’ placement in the author list are based on the level and amount of contributions they have made to the outputs at that point. The FAIR4RS WG is also listed as the last co-author, to recognize that all members play a part in ensuring that outputs are appropriate and adopted. This model ensures that all contributors are recognized and rewarded, and takes the challenges of managing a large number of individual contributors into account. - ## FAIR4RS principles Cite as: Chue Hong, Neil P., Katz, Daniel S., Barker, Michelle, Lamprecht, Anna-Lena, Martinez, Carlos, Psomopoulos, Fotis E., Harrow, Jen, Castro, Leyla Jael, Gruenpeter, Morane, Martinez, Paula Andrea, Honeyman, Tom, Struck, Alessandra, Lee, Allen, Loewe, Axel, van Werkhoven, Ben, Jones, Catherine, Garijo, Daniel, Plomp, Esther, Genova, Francoise, … RDA FAIR4RS WG. (2022). FAIR Principles for Research Software (FAIR4RS Principles) (1.0). [https://doi.org/10.15497/RDA00068](https://doi.org/10.15497/RDA00068). @@ -109,16 +94,12 @@ A1.2. The protocol allows for an authentication and authorization procedure, whe A2. Metadata are accessible, even when the software is no longer available. - - I: Software interoperates with other software by exchanging data and/or metadata, and/or through interaction via application programming interfaces (APIs), described through standards. I1. Software reads, writes and exchanges data in a way that meets domain-relevant community standards. I2. Software includes qualified references to other objects. - - R: Software is both usable (can be executed) and reusable (can be understood, modified, built upon, or incorporated into other software). R1. Software is described with a plurality of accurate and relevant attributes. @@ -131,8 +112,6 @@ R2. Software includes qualified references to other software. R3. Software meets domain-relevant community standards. - - Overall, the Findable and Accessible FAIR4RS Principles are quite similar to the equivalent [FAIR data principles](https://doi.org/10.1038/sdata.2016.18), though of course, the term β€œ(meta)data” used there has been expanded to β€œsoftware and its metadata”. We did extend the F1 principle to take the complexity of software into account, and we use F1.2 to recognize that software typically evolves and has multiple versions, and each needs an identifier. @@ -150,4 +129,11 @@ The various types of stakeholders who work with research software now have a sol We look forward to seeing the results of these steps, which we think will lead to more FAIR software, in turn leading to more reuse and less redundant development. - +### Important links + * [FAIR4 for Research Software completion article](/blog/2022-06/) + * [FAIR4RS Principles v1.0 on Zenodo](https://doi.org/10.15497/RDA00068) + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news) + * [ReSA resources](/resa-resources) + * [Contact us](/contact) + \ No newline at end of file diff --git a/content/blog/2022-09/index.md b/content/blog/2022-09/index.md index ebeca1fc..32f314d5 100644 --- a/content/blog/2022-09/index.md +++ b/content/blog/2022-09/index.md @@ -1,29 +1,17 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "Encouraging entry, retention, diversity and inclusion in research software careers" -#subtitle = "" -title_align = "left" - -display_date = true -date = "2022-09-28" -author = ["Michelle Barker", "Daniel S. Katz"] - -[sidebar] - title = "Important Links" - align = "right" - #sticky = true # Default is false - content = """ - * [DOI: 10.5281/zenodo.7117842](https://zenodo.org/record/7117842#.YzOwGOxByUl) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ - -+++ +--- +title: "Encouraging entry, retention, diversity and inclusion in research software careers" +subtitle: "" +date: 2022-09-28 +authors: + - "" + +categories: + - Blog + - Task force + +summary: "Read more..." +draft: false +--- _September, 2022_ @@ -105,7 +93,9 @@ This need is also recognised in the RSE community through initiatives such as: * In the [ReSA People Roadmap Report](https://www.researchsoft.org/documents/people-roadmap.pdf), career paths and recognition for research software personnel was the most commonly identified priority area (by 40% of the initiatives that were involved). * [Senior level RSE career paths (with an s)](https://danielskatzblog.wordpress.com/2021/09/27/senior-rse-paths/) identifies a range of possible career paths as shown in the following figure: -RSE Career paths, image provided by Dan Katz +
+ RSE Career paths, image provided by Dan Katz +
* A [report](https://bssw.io/blog_posts/a-report-on-the-sc21-research-software-engineers-in-hpc-rse-hpc-2021-workshop) on RSE in HPC noted that the role of HPC RSEs is still missing good career paths in academia and that their expertise is often not acknowledged. * In the UK, the [ExCALIBUR RSE Knowledge Integration Landscape Review](https://doi.org/10.5281/zenodo.4986061) highlights that investment in software means investment in people, and identifies where major training and skills gaps exist to address issues of long-term career development for RSEs in HPC. @@ -137,12 +127,17 @@ There is a range of research on mobility issues in general; an [analysis of digi This analysis has shown that there are some useful initiatives and research available, although they are sparse. How could we build on these foundations to accelerate progress in this area? One option could be a landscape analysis identifying initiatives and gaps in this area. This could be structured utilising the Australian Research Data Commons’s [framework](https://zenodo.org/record/6378082#.YqAvdBNBxQM) for recognition of research software and the people responsible for it, which identifies three levels at which coordinated action is needed: to see software (increase visibility), to shape software (increase fit-for purpose), and to sustain software (increase sustainability). The table below includes some possible questions that could be asked of a variety of organisations to guide identification of useful initiatives going forward. -the table includes questions to guide identification of useful initiatives, it has three levels at which coordinated action is needed: to see software (increase visibility), to shape software (increase fit-for purpose), and to sustain software (increase sustainability) +
+ the table includes questions to guide identification of useful initiatives, it has three levels at which coordinated action is needed: to see software (increase visibility), to shape software (increase fit-for purpose), and to sustain software (increase sustainability) +
## Acknowledgements This work is supported by the Alfred P. Sloan Foundation, grant no G-2021-17001. - - - +### Important links + * [DOI: 10.5281/zenodo.7117842](https://zenodo.org/record/7117842#.YzOwGOxByUl) + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news/) + * [ReSA resources](/resource/resa-resources/) + * [Contact us](/about/contact/) \ No newline at end of file diff --git a/content/blog/2022-10/index.md b/content/blog/2022-10/index.md index 4aaacb48..42239204 100644 --- a/content/blog/2022-10/index.md +++ b/content/blog/2022-10/index.md @@ -1,33 +1,16 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "Expanding the mapping of the global research software community" -#subtitle = "" -title_align = "left" - -display_date = true -date = "2022-10-21" -author = ["Michelle Barker"] - -[sidebar] - title = "Important Links" - align = "right" - #sticky = true # Default is false - content = """ - * [video about this report](https://www.youtube.com/watch?v=pxmYroTxz-A) - * Martinez, Paula Andrea. (2022, October 12). The Research Software Community Landscape in the Global South [Video]. Zenodo. [https://doi.org/10.5281/zenodo.7192692](https://doi.org/10.5281/zenodo.7192692) - * Martinez, Paula Andrea. (2022). The Research Software Community Landscape in the Global South. Zenodo. [https://doi.org/10.5281/zenodo.7179892](https://doi.org/10.5281/zenodo.7179892) - * Martinez, Paula Andrea. (2022). Research Software Communities Global South [Data set]. Zenodo. [https://doi.org/10.5281/zenodo.7179807](https://doi.org/10.5281/zenodo.7179807) - * Martinez, Paula Andrea. (2022). Research Software Funders Global South [Data set]. Zenodo. [https://doi.org/10.5281/zenodo.7179867](https://doi.org/10.5281/zenodo.7179867) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ - -+++ +--- +title: "Expanding the mapping of the global research software community" +subtitle: "" +date: 2022-10-21 +authors: + - "" + +categories: + - Blog + +summary: "Read more..." +draft: false +--- _October, 2022_ @@ -35,7 +18,7 @@ Authors: Michelle Barker **Introduction** -The Research Software Alliance (ReSA) has been expanding their 2020 [mapping](https://www.researchsoft.org/blog/2020-03/) of the international research software community landscape (Katz et al., 2020), to assist in fulfilling the ReSA mission to bring research software communities together to collaborate on the advancement of research software. We wanted to learn more about communities that share our vision that research software and those who develop and maintain it are recognised and valued as fundamental and vital to research worldwide. +The Research Software Alliance (ReSA) has been expanding their 2020 [mapping](/blog/2020-03/) of the international research software community landscape (Katz et al., 2020), to assist in fulfilling the ReSA mission to bring research software communities together to collaborate on the advancement of research software. We wanted to learn more about communities that share our vision that research software and those who develop and maintain it are recognised and valued as fundamental and vital to research worldwide. Increasing international collaboration and information flow around our vision can help increase research impact and assist in other societal goals. Just as open science and open source software can be a [driver of equity](https://chanzuckerberg.com/blog/importance-open-source-science-software/) [(Powell, 2021)](https://www.zotero.org/google-docs/?ggFhWx), this can be true of research software: @@ -49,7 +32,7 @@ The resulting report, [The Research Software Community Landscape in the Global S - South America: Argentina, Bolivia, Brazil, and Colombia. By NicolΓ‘s Wolovick, Paula Andrea Martinez, Renato Augusto CorrΓͺa dos Santos, and Stephannie Jimenez Gacha - Asia: Bangladesh, Bhutan, China, India, Indonesia, Nepal, Pakistan, Saudi Arabia, and Sri Lanka. By Abdullah Shams Bin Tariq, Saranjeet Kaur Bhogal, Jyoti Bhogal, Arslan Sheikh, and Batool Almarzouq -This report’s analysis shows that few of the [126 organisations and communities](https://doi.org/10.5281/zenodo.7179807) focus solely on research software, for most research software is just a part of their interests. For example, [Open Science Community Saudi Arabia](https://osc-ksa.com/) (OSCSA) mainly targets academics and encourages best practices of sharing, versioning, and documenting research software (amongst many other skills and practices); and [OpenScienceKE](https://github.com/BioinfoNet/OpenScienceKE) seeks to promote open science practices in bioinformatics in Kenya. In comparison, the 2020 [mapping](https://www.researchsoft.org/blog/2020-03/) focused on organisations with a strong focus on research software, although not necessarily with only this focus. +This report’s analysis shows that few of the [126 organisations and communities](https://doi.org/10.5281/zenodo.7179807) focus solely on research software, for most research software is just a part of their interests. For example, [Open Science Community Saudi Arabia](https://osc-ksa.com/) (OSCSA) mainly targets academics and encourages best practices of sharing, versioning, and documenting research software (amongst many other skills and practices); and [OpenScienceKE](https://github.com/BioinfoNet/OpenScienceKE) seeks to promote open science practices in bioinformatics in Kenya. In comparison, the 2020 [mapping](/blog/2020-03/) focused on organisations with a strong focus on research software, although not necessarily with only this focus. This focus can also be seen in the list of [62 funders](https://doi.org/10.5281/zenodo.7179867) where the majority focus on research, and sometimes technology or open source software in general, rather than specifically targeted programs. For example, in Brazil the SΓ£o Paulo Research Foundation (FAPESP) offers a [Technical Training Program](https://bv.fapesp.br/en/18/technical-training-program/) that aims at training and improving the skills of mid-and higher level technicians who participate in the development of research projects in the state of SΓ£o Paulo. @@ -63,7 +46,7 @@ To continue to progress this work, readers are invited to continue to add or mak *There [is] a lack of incentives to promote open source work and science in academia in our countries … Inclusive communities of practice that lower as many barriers as possible to international involvement, such as R-Ladies, PyLadies, Open Life Science, or The Turing Way, help to change this. But we need many more.* [(AciΓ³n et al., 2022)](https://www.zotero.org/google-docs/?sK1fF7) -You can also engage with colleagues at our monthly [Research Software Community Forum](https://www.researchsoft.org/community-forum/) or on our [Slack channel](https://researchsoft.slack.com/ssb/redirect), join [task forces](https://www.researchsoft.org/taskforces/), and stay up to date via our [newsletter](https://www.researchsoft.org/news/) or [Twitter](https://twitter.com/researchsoft). +You can also engage with colleagues at our monthly [Research Software Community Forum](/forums/community-leadership-forum/) or on our [Slack channel](https://researchsoft.slack.com/ssb/redirect), join [task forces](/taskforces/), and stay up to date via our [newsletter](/news/) or [Twitter](https://twitter.com/researchsoft). **References** @@ -83,3 +66,13 @@ You can also engage with colleagues at our monthly [Research Software Community This work was supported by the Wellcome Trust grant [222436/Z/21/Z]. +### Important links + * [video about this report](https://www.youtube.com/watch?v=pxmYroTxz-A) + * Martinez, Paula Andrea. (2022, October 12). The Research Software Community Landscape in the Global South [Video]. Zenodo. [https://doi.org/10.5281/zenodo.7192692](https://doi.org/10.5281/zenodo.7192692) + * Martinez, Paula Andrea. (2022). The Research Software Community Landscape in the Global South. Zenodo. [https://doi.org/10.5281/zenodo.7179892](https://doi.org/10.5281/zenodo.7179892) + * Martinez, Paula Andrea. (2022). Research Software Communities Global South [Data set]. Zenodo. [https://doi.org/10.5281/zenodo.7179807](https://doi.org/10.5281/zenodo.7179807) + * Martinez, Paula Andrea. (2022). Research Software Funders Global South [Data set]. Zenodo. [https://doi.org/10.5281/zenodo.7179867](https://doi.org/10.5281/zenodo.7179867) + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news) + * [ReSA resources](/resa-resources) + * [Contact us](/contact) diff --git a/content/blog/2022-11/index.md b/content/blog/2022-11/index.md index e19871b2..debc5928 100644 --- a/content/blog/2022-11/index.md +++ b/content/blog/2022-11/index.md @@ -1,49 +1,34 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "Global gathering of research software funders sets the agenda for supporting sustainable research software" -#subtitle = "" -title_align = "left" - -display_date = true -date = "2022-11-24" -author = ["Michelle Barker", "Valentina AzzarΓ ", "Tom Bakker", "Lieke de Boer", "Neil Chue Hong", "Maria Cruz", "Niels Drost", "Joris van Eijnatten", "Maaike de Jong", "Daniel S. Katz", "Carlos Martinez-Ortiz", "Veronica Pang"] - -[sidebar] - title = "Important Links" - align = "right" - #sticky = true # Default is false - content = """ - * [Event website](https://future-of-research-software.org) - * [Event keynotes](https://future-of-research-software.org/presentations) - * [Report](https://doi.org/10.5281/zenodo.7350199) - * NLeSC [blog post](https://blog.esciencecenter.nl/) - * [Draft Declaration on Funding RSS](https://future-of-research-software.org/draft-amsterdam-declaration-on-funding-research-software-sustainability/) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ +--- +title: "Global gathering of research software funders sets the agenda for supporting sustainable research software" +subtitle: "" +date: 2022-11-24 +authors: + - "" -[asset] - image = "FF_CaroleGoble.jpg" - text = "Carole Goble presenting β€œResearch Software Sustainability Takes a Village”. Photo credit: Annelies Verhelst" -+++ -Image: Carole Goble presenting β€œResearch Software Sustainability Takes a Village”. Photo credit: [Annelies Verhelst](https://anneliesverhelst.com/) +categories: + - Blog + +summary: "Read more..." +draft: false +--- _November, 2022_ Authors: Michelle Barker, Valentina AzzarΓ , Tom Bakker, Lieke de Boer, Neil Chue Hong, Maria Cruz, Niels Drost, Joris van Eijnatten, Maaike de Jong, Daniel S. Katz, Carlos Martinez-Ortiz, Veronica Pang -This blog post is being cross-posted by the [Research Software Alliance](https://www.researchsoft.org/blog/2022-11/) and [Netherlands eScience Center](https://medium.com/@eScienceCenter/the-future-of-research-software-602878378c5f). +
+ Carole Goble presenting β€œResearch Software Sustainability Takes a Village”. Photo credit: Annelies Verhelst +
+ +Image: Carole Goble presenting β€œResearch Software Sustainability Takes a Village”. Photo credit: [Annelies Verhelst](https://anneliesverhelst.com/) + +This blog post is being cross-posted by the [Research Software Alliance](/blog/2022-11/) and [Netherlands eScience Center](https://medium.com/@eScienceCenter/the-future-of-research-software-602878378c5f). -_On 8 and 9 November,_ _the_ [_Research Software Alliance (ReSA)_](https://www.researchsoft.org/) _and_ [_Netherlands eScience Center_](https://www.esciencecenter.nl/) _organized_ _the_ [_International Funders Workshop: The Future of Research Software_](https://www.future-of-research-software.org/)_. During this workshop,_ _a number of members from the_ [_Research Software Funders Forum_](https://www.researchsoft.org/funders-forum/) _came together with other organisations that support research software. During the workshop, participants explored how to effectively fund new and existing research software. In total, more than 60 representatives from_ [_45 organisations_](https://future-of-research-software.org/participants/) _attended the workshop._ +_On 8 and 9 November,_ _the_ [_Research Software Alliance (ReSA)_](https://www.researchsoft.org/) _and_ [_Netherlands eScience Center_](https://www.esciencecenter.nl/) _organized_ _the_ [_International Funders Workshop: The Future of Research Software_](https://www.future-of-research-software.org/)_. During this workshop,_ _a number of members from the_ [_Research Software Funders Forum_](/forums/funders-forum/) _came together with other organisations that support research software. During the workshop, participants explored how to effectively fund new and existing research software. In total, more than 60 representatives from_ [_45 organisations_](https://future-of-research-software.org/participants/) _attended the workshop._ Imagine a world without research software. It's a world in which researchers cannot build and operate modern scientific instruments, nor model climate change, ecosystems, human bodies, virus outbreaks, social interactions or inequality. A world in which they would not be able to process research data or automate, share, reproduce and reuse research methods. -The crucial role of software in research and the urgent need to sustain it and to invest in the people who develop and maintain it has led to several funders to come together in the [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/), a collaboration of funding organisations (supported by the [Alfred P. Sloan Foundation](https://sloan.org/)) committed to supporting research software and those who develop it as fundamental and vital to research. +The crucial role of software in research and the urgent need to sustain it and to invest in the people who develop and maintain it has led to several funders to come together in the [Research Software Funders Forum](/forums/funders-forum/), a collaboration of funding organisations (supported by the [Alfred P. Sloan Foundation](https://sloan.org/)) committed to supporting research software and those who develop it as fundamental and vital to research. Members from the Forum met with other organisations that support research software at the International Funders Workshop, which is summarised in the report, [Global gathering of research software funders sets the agenda for supporting sustainable research software](https://zenodo.org/record/7384410#.Y4k4VexBw3E). It was an opportunity for participants to explore how they can effectively contribute to making research software sustainable. Participants shared their experiences, which varied not only in the size of the participants' budgets, but also where programmes are situated, whether they specifically focus on research software, and also what they target. @@ -61,6 +46,17 @@ This workshop marks a further step in the development of the research software c [Videos](https://future-of-research-software.org/presentations/) and [slides](https://future-of-research-software.org/presentations/) of all of the keynotes are available: [Daniel S. Katz](https://danielskatz.org/), Chief Scientist at the National Center for Supercomputing Applications (NCSA) and Research Associate Professor in Computer Science at the University of Illinois at Urbana-Champaign, USA, and [Carole Goble](https://www.research.manchester.ac.uk/portal/carole.goble.html), a Professor of Computer Science at the University of Manchester, UK, set the scene to enable attendees to form a better common understanding of the place of research software. [Joeri van Leeuwen](https://www.uva.nl/en/profile/l/e/a.g.j.vanleeuwen/a.g.j.vanleeuwen.html?cb), Senior Astronomer at the Netherlands Institute for Radio Astronomy (ASTRON), Netherlands; and [Fabio Kon](https://fapesp.br/index.php/7140/fabio-kon), Special Advisor, SΓ£o Paulo Research Foundation (FAPESP), Brazil, shared their researcher and funder perspectives (respectively), thoughts on why and how to care about research software and the people who develop and maintain it, and ideas for how to better recognise their importance. -The next ReSA [Research Software Community Forum](https://www.researchsoft.org/community-forum/) on 29 November, 15:00-16:00 UTC, will also feature Joris van Eijnatten from the Netherlands eScience Center, who will discuss the workshop outcomes and next steps in this public forum. +The next ReSA [Research Software Community Forum](/forums/community-forum/) on 29 November, 15:00-16:00 UTC, will also feature Joris van Eijnatten from the Netherlands eScience Center, who will discuss the workshop outcomes and next steps in this public forum. Drafting of the Declaration will now continue; if you would like to be kept up to date and potentially be involved in this process then email [amsterdamdeclaration@esciencecenter.nl](mailto:amsterdamdeclaration@esciencecenter.nl) to request to be sent subscription details when available. + +### Important links + * [Event website](https://future-of-research-software.org) + * [Event keynotes](https://future-of-research-software.org/presentations) + * [Report](https://doi.org/10.5281/zenodo.7350199) + * NLeSC [blog post](https://blog.esciencecenter.nl/) + * [Draft Declaration on Funding RSS](https://future-of-research-software.org/draft-amsterdam-declaration-on-funding-research-software-sustainability/) + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news) + * [ReSA resources](/resa-resources) + * [Contact us](/contact) \ No newline at end of file diff --git a/content/blog/2023-02/index.md b/content/blog/2023-02/index.md index 2bb6f7a1..bdd920ce 100644 --- a/content/blog/2023-02/index.md +++ b/content/blog/2023-02/index.md @@ -1,29 +1,16 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "ReSA 2022 Year in review" -#subtitle = "" -title_align = "left" - -display_date = true -date = "2023-02-17" - -[sidebar] - title = "Important Links" - align = "right" - #sticky = true # Default is false - content = """ - * [Event website](https://future-of-research-software.org) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - * [Download the report](https://doi.org/10.5281/zenodo.7683174) - """ - -+++ +--- +title: "ReSA 2022 Year in review" +subtitle: "" +date: 2023-02-17 +authors: + - "" + +categories: + - Blog + +summary: "Read more..." +draft: false +--- _February, 2023_ @@ -36,3 +23,11 @@ Citation: Hartley, Kim & Barker, Michelle (2023). Research Software Alliance - 2

+ +### Important links + * [Event website](https://future-of-research-software.org) + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news) + * [ReSA resources](/resa-resources) + * [Contact us](/contact) + * [Download the report](https://doi.org/10.5281/zenodo.7683174) \ No newline at end of file diff --git a/content/blog/2023-04/index.md b/content/blog/2023-04/index.md index a421c6a9..df49471b 100644 --- a/content/blog/2023-04/index.md +++ b/content/blog/2023-04/index.md @@ -1,35 +1,21 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "Can National Research and Education Networks be a focal point for Research Software Engineers in some regions?" -#subtitle = "" -title_align = "left" - -display_date = true -date = "2023-04-17" -author = ["Saranjeet Kaur Bhogal"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = false # Default is false - content = """ - * [Event website APAN55](https://apan55.apan.net/) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ +--- +title: "Can National Research and Education Networks be a focal point for Research Software Engineers in some regions?" +subtitle: "" +date: 2023-04-17 +authors: + - "" -+++ +categories: + - Blog + +summary: "Read more..." +draft: false +--- April, 2023 Author: [Saranjeet Kaur Bhogal](https://saranjeetkaur.github.io/About-Me/) - ## Introduction This blog explores my thoughts on the potential role of [National Research and Education Networks (NRENs)](https://en.wikipedia.org/wiki/National_research_and_education_network) in promoting the growth of a Research Software Engineering (RSE) community in Asia-Pacific. The significance of this lies in the fact that NRENs have not traditionally been significantly involved in supporting RSE groups in other regions. @@ -71,15 +57,20 @@ At APAN55, I presented the ["RSE Asia Association: Journey and Future Plans"](ht In a [Twitter thread](https://twitter.com/RSE_Asia/status/1635942735948414978?s=20), I compiled responses from APAN55 participants regarding their opinions on RSEng as a profession and a career path. One person from Malaysia responded, "I think it's an interesting path to choose especially for people who like to do research and also want to develop software". An attendee from Nepal commented, "For me it's a domain of software engineering”, while someone from South Korea observed that software has a significant impact in various domains. They stated that with software being integrated into almost every domain, there is a need for research to enhance its capabilities. Another participant from Nepal mentioned that they believed the role of RSEng to be important and its significance had grown over time. They further stated that the particular requirements of researchers could only be met by specialised software engineers who develop an understanding of the research ecosystem, have knowledge of existing solutions, and are capable of bridging any gaps that may exist. Quoting an attendee from India, "Indeed there could be a wonderful career for a software engineer in academia. If they get a rich experience over technology it can help the researchers to facilitate their theory into a workable project or product. Software Engineering could be a backbone where concepts can be transformed into productive algorithms and results can be automated. It can also set up a process path for executing a project. Problem statements can be set up by a software engineer for a group of students and academics." -From left to right and top to bottom) Saranjeet's presentation about the RSE Asia Association, RSE Asia Association swags, Twitter thread about the activity. Image credit:Saranjeet Kaur Bhogal +From left to right and top to bottom) Saranjeet's presentation about the RSE Asia Association, RSE Asia Association swags, Twitter thread about the activity. Image credit: Saranjeet Kaur Bhogal _(From left to right and top to bottom) My presentation about the RSE Asia Association, RSE Asia Association swags, Twitter thread about the activity._ **Image credit:** [Saranjeet Kaur Bhogal](mailto:kaur.saranjeet3@gmail.com) ## Call to Action -In general, I have observed that RSEng is gaining recognition in broader conversations about Open Science, Open Source, etc. However, there seems to be a lack of direct attention towards this topic in the Asian region, as mentioned in a report on "[Expanding the mapping of the global research software community](https://www.researchsoft.org/blog/2022-10/)." To address this gap, I have been promoting awareness and leading the efforts to focus on RSEng within the APAN network (at APAN53 and APAN55). Given the breadth of the APAN network and NRENs in Asia, they could serve as a great hub for the research software community in the region. If you have any suggestions on how we can leverage NRENs to foster the growth of the RSEng community in Asia, please feel free to [get in touch](mailto:kaur.saranjeet3@gmail.com). We might be able to submit a panel discussion on this topic at APAN56! Also feel free to share any ideas for other relevant conferences in the Asia-Pacific region. - - +In general, I have observed that RSEng is gaining recognition in broader conversations about Open Science, Open Source, etc. However, there seems to be a lack of direct attention towards this topic in the Asian region, as mentioned in a report on "[Expanding the mapping of the global research software community](/blog/2022-10/)." To address this gap, I have been promoting awareness and leading the efforts to focus on RSEng within the APAN network (at APAN53 and APAN55). Given the breadth of the APAN network and NRENs in Asia, they could serve as a great hub for the research software community in the region. If you have any suggestions on how we can leverage NRENs to foster the growth of the RSEng community in Asia, please feel free to [get in touch](mailto:kaur.saranjeet3@gmail.com). We might be able to submit a panel discussion on this topic at APAN56! Also feel free to share any ideas for other relevant conferences in the Asia-Pacific region. **Acknowledgements:** _This blog post has benefitted from the suggestions and feedback by [Michelle Barker](https://www.linkedin.com/in/michelledbarker/) and [Paula Andrea Martinez](https://www.linkedin.com/in/pambio/)._ + +### Important links + * [Event website APAN55](https://apan55.apan.net/) + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news) + * [ReSA resources](/resa-resources) + * [Contact us](/contact) \ No newline at end of file diff --git a/content/blog/2023-06/index.md b/content/blog/2023-06/index.md index 996b4aa7..0deabba9 100644 --- a/content/blog/2023-06/index.md +++ b/content/blog/2023-06/index.md @@ -1,30 +1,16 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "How Can Open Source Program Offices (OSPOs) Support Research Software?" -#subtitle = "" -title_align = "left" - -disabled = false -display_date = true -date = "2023-06-01" -author = ["Kim Hartley", "Michelle Barker", "Mark Leggott", "Daniel S. Katz"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = false # Default is false - content = """ - * [Research Software Policies Page](https://www.researchsoft.org/software-policies/) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ - -+++ +--- +title: "How Can Open Source Program Offices (OSPOs) Support Research Software?" +subtitle: "" +date: 2023-06-01 +authors: + - "" + +categories: + - Blog + +summary: "Read more..." +draft: false +--- June 2023 @@ -40,7 +26,7 @@ To provide some context, an OSPO is a formal construct in an organisation that h **Sustainability** -Several American universities are exploring OSPOs, with institutions in other countries likely to follow suit. The [Digital Research Alliance of Canada](https://alliancecan.ca/en) (the Alliance) – a nonprofit organisation funded by the Government of Canada, and one of ReSA's [founding members](https://www.researchsoft.org/about-resa/) – is interested in how OSPOs can address a key challenge for grant-funded research software platforms (RSPs): sustainability. As previously funded RSPs may become core infrastructure in the national or global research community, their sustainability can be precarious because, as existing infrastructure, they may no longer clearly fit the traditional innovation mandates held by funders. An OSPO, therefore, offers a valuable approach to extending the use and application of research software. +Several American universities are exploring OSPOs, with institutions in other countries likely to follow suit. The [Digital Research Alliance of Canada](https://alliancecan.ca/en) (the Alliance) – a nonprofit organisation funded by the Government of Canada, and one of ReSA's [founding members](/about/) – is interested in how OSPOs can address a key challenge for grant-funded research software platforms (RSPs): sustainability. As previously funded RSPs may become core infrastructure in the national or global research community, their sustainability can be precarious because, as existing infrastructure, they may no longer clearly fit the traditional innovation mandates held by funders. An OSPO, therefore, offers a valuable approach to extending the use and application of research software. The [Alfred P. Sloan Foundation](https://sloan.org/) has played a fundamental role in helping universities establish OSPOs. Since 2020, the Sloan Foundation has approved grants to support six university OSPOs. The Sloan Technology Program identified several key benefits associated with OSPOs and better institutional support for open source practices as part of its recent [call](https://sloan.org/programs/digital-technology/ospo-loi). For advancement and sustainability of software and other research outputs within universities, implementing strong project oversightβ€”clearly defined activities, procedures, and policiesβ€”supported by strong documentation practices can help ensure the continuity of individual projects. Stakeholders can thus continue engaging with projects beyond their tenure at a particular institution. By leveraging the collaborative nature of open source, outputs generated within an institution can be utilised by other stakeholders and can encourage further innovation across the broader community. diff --git a/content/blog/2023-09-15/index.md b/content/blog/2023-09-15/index.md index 7b1118ca..1d36d614 100644 --- a/content/blog/2023-09-15/index.md +++ b/content/blog/2023-09-15/index.md @@ -1,40 +1,26 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "ADORE.software is ready for signing" -#subtitle = "" -title_align = "left" - -disabled = false -display_date = true -date = "2023-09-15" - -[sidebar] - title = "Important Links" - align = "right" - sticky = false # Default is false - content = """ - * [ReSA Blog](https://www.researchsoft.org/blog/) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ +--- +title: "ADORE.software is ready for signing" +subtitle: "" +date: 2023-09-15 +authors: + - "" + +categories: + - Blog -+++ +summary: "Read more..." +draft: false +--- 15 September 2023 DOI: [10.59350/a0wh3-y3057](https://doi.org/10.59350/a0wh3-y3057) +We are pleased to announce that Version 1.0 of the [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/) (ADORE.software) is now released. ADORE.software is the first step towards formalising, on a global level, the basic principles and recommendations related to funding the sustainability of research software, including the people needed to achieve this goal. Now that Version 1.0 has been released, this means that funding organisations that support research software, and/or the people who develop and maintain it, are now invited to formally [sign ADORE.software](https://adore.software/get-involved/). ![My Image](shutterstock_2007818042.jpg) Image source: Prostock-studio, [Shutterstock](https://www.shutterstock.com/image-photo/contract-signing-female-customer-sign-papers-2007818042) -We are pleased to announce that Version 1.0 of the [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/) (ADORE.software) is now released. ADORE.software is the first step towards formalising, on a global level, the basic principles and recommendations related to funding the sustainability of research software, including the people needed to achieve this goal. Now that Version 1.0 has been released, this means that funding organisations that support research software, and/or the people who develop and maintain it, are now invited to formally [sign ADORE.software](https://adore.software/get-involved/). - The declaration was initiated in November 2022 by the [Research Software Alliance](https://www.researchsoft.org/) and [Netherlands eScience Center](https://www.esciencecenter.nl/) who organised the [International Funders Workshop: The Future of Research Software](https://adore.software/2023/03/international-funders-workshop-the-future-of-research-software/) which focused on creating the first draft of the declaration. Since the workshop, the research software community around the world, including members of the combined [Research Data Alliance and Research Software Funders Forum](https://adore.software/2023/03/rda-resa-funders-forum-gothenburg-sweden/) provided input towards this release of the declaration. β€œ_We are excited to release Version 1.0 of the ADORE.software declaration! We hope that support for this set of principles and recommendations extends beyond a signature and is the first of many steps towards implementing these best practices to set a national and global precedent to raise recognition._” \- Neil Chue Hong, Director, Software Sustainability Institute, UK, on behalf of the [writing team](https://adore.software/about/governance/). @@ -47,4 +33,11 @@ Organisations and individuals who do not fully identify with the definition of f "_Through new programs and funding opportunities at NIH, such as the Open Source Software program and the Software Research Engineers program, the agency is supporting sustainable foundations for the development and deployment of software tools in the biomedical and behavioral sciences._" \- Susan Gregurick, Director, Office of Data Science Strategy, National Institutes of Health, USA -In the coming months we expect to see many funders signing the declaration and other non-funders showing their support! To stay updated on this declaration, [subscribe](https://www.researchsoft.org/news/) to the ReSA newsletter for updates. +In the coming months we expect to see many funders signing the declaration and other non-funders showing their support! To stay updated on this declaration, [subscribe](/news/) to the ReSA newsletter for updates. + +### Important links + * [ReSA Blog](/blog/) + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news/) + * [ReSA resources](/resource/resa-resources/) + * [Contact us](/about/contact/) \ No newline at end of file diff --git a/content/blog/2023-09/index.md b/content/blog/2023-09/index.md index fd790d3b..b6563cc1 100644 --- a/content/blog/2023-09/index.md +++ b/content/blog/2023-09/index.md @@ -1,30 +1,16 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "Elevating Research Software: Developing a Roadmap" -#subtitle = "" -title_align = "left" - -disabled = false -display_date = true -date = "2023-09-04" -author = ["Eric Allen Jensen", "Daniel S. Katz"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = false # Default is false - content = """ - * [Research Blog](https://www.researchsoft.org/blog/) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ +--- +title: "Elevating Research Software: Developing a Roadmap" +subtitle: "" +date: 2023-09-04 +authors: + - "" -+++ +categories: + - Blog + +summary: "Read more..." +draft: false +--- 4 September 2023 @@ -32,10 +18,10 @@ Authors: Eric Allen Jensen, Daniel S. Katz DOI: [10.5281/zenodo.8312543](https://zenodo.org/record/8312543) -![My Image](252891110-f7f7219e-9d80-4496-b6ed-8c4a86d20eb9.png) - Research software is the unsung hero of modern science. Yet it often plays second fiddle to traditional scholarly outputs such as journal articles. As research grows increasingly computational, the need to recognise software contributions becomes imperative. However, there are a number of challenges that must be overcome to achieve this. How do we measure and extend the impact of research software? How do we integrate it into academic evaluations? A set of answers may be found through policy-related activities, including advocacy, organising, and research. +![My Image](252891110-f7f7219e-9d80-4496-b6ed-8c4a86d20eb9.png) + Building on discussions in the US Research Software Sustainability Institute ([URSSI)](https://urssi.us/), including a number of workshops and an [implementation plan](https://plan.urssi.us/) that URSSI developed, we've created a set of possible activities aimed at elevating the role of research software in academic career paths, recognition, and beyond. As part of the Alfred P. Sloan-funded [URSSI Policy project](https://urssi.us/projects/policy/about/), we've assembled 44 of these ideas as a starting point, and we've posted them as [issues in GitHub](https://github.com/si2-urssi/policy/issues?q=is%3Aissue+is%3Aopen+label%3AActivity). We intend for this to be a living list, where anyone can: @@ -113,3 +99,10 @@ _Visibility of Achievements_ This is a small selection of the 44 potential activities that are now live, prepared as part of the [URSSI Policy project](https://urssi.us/projects/policy/about/). The activities outlined so far offer a multi-pronged approach to advancing the research software field. They aim to create a more equitable, transparent, and dynamic academic ecosystem. These activities are not just suggestions to help the research software field chart its course; they're potential catalysts for change. They aim to redefine academic norms, making room for the computational cornerstone that is research software. It's time to give research software its due, not as a mere tool, but as a cornerstone of academic innovation. Ready to contribute or learn more? Check out the [collection of activities](https://github.com/si2-urssi/policy/issues?q=is%3Aissue+is%3Aopen+label%3AActivity) and let's elevate research software together! +### Important links + * [Research Blog](/blog/) + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news) + * [ReSA resources](/resa-resources) + * [Contact us](/contact) + \ No newline at end of file diff --git a/content/blog/2023-10/index.md b/content/blog/2023-10/index.md index 83b04d67..27291d91 100644 --- a/content/blog/2023-10/index.md +++ b/content/blog/2023-10/index.md @@ -1,31 +1,15 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "Investing in People: Anticipating the Future of Research Software " -#subtitle = "" -title_align = "left" - -disabled = false -display_date = true -date = "2023-10-24" -author = ["Kim Hartley", "Michelle Barker"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = false # Default is false - content = """ - * [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ - -+++ -![My Image](IMG_3080-1440x1080.jpg) +--- +title: "Investing in People: Anticipating the Future of Research Software" +subtitle: "" +date: 2023-10-24 +authors: + - "" +categories: + - Blog + +summary: "Read more..." +draft: false +--- October 2023 @@ -33,13 +17,15 @@ Authors: Kim Hartley and Michelle Barker We are proud to report that the second [International Research Software Funders Workshop](https://adore.software/international-research-software-funders-workshop/), co-hosted by the [Digital Research Alliance of Canada](https://alliancecan.ca/en) (the Alliance) and the [Research Software Alliance](https://www.researchsoft.org/) (ReSA) from 18-20 September was a great success. People are at the heart of research software sustainability and funders can lead the way by investing in the people who develop and maintain research software. That is why the workshop theme was "Investing in People: Anticipating the Future of Research Software". The event aimed to set the future agenda for government, philanthropic, and industry funders to support sustainable research software and communities. +![My Image](IMG_3080-1440x1080.jpg) + In total, 50 representatives from more than 35 organisations – including funders and organisations that support research software from around the globe – attended the hybrid workshop held in Montreal, Canada, and virtually. During the three-day workshop, experts explored how research software funders can facilitate capacity building through funder practices; research software platforms, infrastructure, and communities; and new initiatives. Moreover, [Version 1.0 of the Amsterdam Declaration on Funding Research Software Sustainability (ADORE.software)](https://adore.software/2023/09/adore-software-is-ready-for-signing/) was released and is now available for [signing](https://adore.software/get-involved/). **Background** This second iteration of the funders workshop built on the inaugural [International Funders Workshop: The Future of Research Software](https://future-of-research-software.org/), co-hosted by the Netherlands eScience Center and ReSA in November 2022 in Amsterdam. During this first workshop, more than 40 funding organisations gathered to set the agenda for supporting sustainable research software and drafting of the [ADORE.software](https://adore.software/declaration/). Following public consultation in 2023 and 19 organisational expressions of interest in becoming signatories, [Version 1.0 of the Declaration was released](https://adore.software/2023/09/adore-software-is-ready-for-signing/) in advance of the Montreal workshop and is now available for [signing](https://adore.software/get-involved/). ADORE.software is the first step towards formalising, on a global level, the basic principles and recommendations related to funding the sustainability of research software, including the people needed to achieve this goal. -The first workshop marked a further step in the development of the research software community. Stakeholders have continued to build on this momentum through involvement in the [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/), convened by ReSA, and its funder-led working groups. The Alliance and ReSA, together with the workshop Steering Committee, organised the 2nd International Research Software Funders Workshop to continue this important work and facilitate global collaboration among funders and other key decision makers and influencers across the research software ecosystem. +The first workshop marked a further step in the development of the research software community. Stakeholders have continued to build on this momentum through involvement in the [Research Software Funders Forum](/forums/funders-forum/), convened by ReSA, and its funder-led working groups. The Alliance and ReSA, together with the workshop Steering Committee, organised the 2nd International Research Software Funders Workshop to continue this important work and facilitate global collaboration among funders and other key decision makers and influencers across the research software ecosystem. **2nd International Research Software Funders Workshop** @@ -64,7 +50,7 @@ The recommendations in ADORE.software informed the structure of the workshop's b Malvika Sharan from The Alan Turing Institute and Open Life Science provided a research software community perspective in her [talk](https://zenodo.org/records/8361334) on "Exploring 'Do No Harm' Principles in Open Research Communities." Malvika's compelling keynote encouraged funders to become leaders in the research software ecosystem by incentivising and recognising all types of research roles; investing in capacity-building goals that focus on bridging scientific and economic divides; and applying community-oriented frameworks to extend the benefits of research to the broader community that 'do no harm', thereby ensuring open science practices enable equitable research and research outcomes. -During the second breakout session, participants investigated capacity building through research software platforms, infrastructure, and communities. One group explored the role of [Open Source Program Offices](https://www.researchsoft.org/blog/2023-06/) (OSPOs), noting that OSPOs as centres of software could ultimately help research institutions understand their software investments. Another group considered why and how to support research software communities, highlighting the need for more evidence-led recommendations and exploring the possibility of reversing the funding mechanism to fund projects after the fact, as a function of how much they were used. In discussing research software in research assessment reform, participants noted that very few research software outputs are being assessed and indicators are fragmented and field-specific. Some solutions include sharing guidance on how software is being evaluated in a single place, sharing job profiles for RSEs, and sharing existing examples of research indicators that include software. Finally, another group highlighted that the environmental impact of research software is an emerging field, and persuading researchers to think about making their code efficient is a challenge. +During the second breakout session, participants investigated capacity building through research software platforms, infrastructure, and communities. One group explored the role of [Open Source Program Offices](/blog/2023-06/) (OSPOs), noting that OSPOs as centres of software could ultimately help research institutions understand their software investments. Another group considered why and how to support research software communities, highlighting the need for more evidence-led recommendations and exploring the possibility of reversing the funding mechanism to fund projects after the fact, as a function of how much they were used. In discussing research software in research assessment reform, participants noted that very few research software outputs are being assessed and indicators are fragmented and field-specific. Some solutions include sharing guidance on how software is being evaluated in a single place, sharing job profiles for RSEs, and sharing existing examples of research indicators that include software. Finally, another group highlighted that the environmental impact of research software is an emerging field, and persuading researchers to think about making their code efficient is a challenge. **Workshop Day 2 - September 20** @@ -76,12 +62,19 @@ The workshop culminated with a Do-a-Thon, "a short collaboration where participa **Overall outcomes and how you can get involved** -The workshop solidified the importance of international collaboration to support research software. There is a widening group of funders with awareness of the need to support research software and an understanding of how to do this. The [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/) has been building momentum since its inception in early 2022; its dedicated funder-led working groups are expanding their reach by engaging with other stakeholders and organisations, such as the [Global Research Council](https://globalresearchcouncil.org/). Moreover, the workshop highlighted areas where coordination by funders would be beneficial, for example, in supporting the [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/). Participants also expressed an interest in exploring opportunities for forums, for example, to engage publishers around software citations (along with the existing [ReSA Task Force on Code Availability](https://www.researchsoft.org/taskforces/)). +The workshop solidified the importance of international collaboration to support research software. There is a widening group of funders with awareness of the need to support research software and an understanding of how to do this. The [Research Software Funders Forum](/forums/funders-forum/) has been building momentum since its inception in early 2022; its dedicated funder-led working groups are expanding their reach by engaging with other stakeholders and organisations, such as the [Global Research Council](https://globalresearchcouncil.org/). Moreover, the workshop highlighted areas where coordination by funders would be beneficial, for example, in supporting the [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/). Participants also expressed an interest in exploring opportunities for forums, for example, to engage publishers around software citations (along with the existing [ReSA Task Force on Code Availability](/taskforces/)). We thank all the participants for their engagement during the workshop sessions. We're grateful to the workshop Steering Committee for their efforts in organising a successful hybrid workshop. A full report, written and edited collectively by workshop participants, is forthcoming. -To stay up to date on ADORE.software, visit [www.adore.software](http://www.adore.software/). If you want to show your support for the Declaration, you can become a [signatory](https://adore.software/sign/) (for funders) or [supporter](https://adore.software/support/) (for non-funders) and help share the [news](https://adore.software/2023/09/adore-software-is-ready-for-signing/). To receive updates on news related to the Declaration and future activities, subscribe to the [ReSA newsletter](https://landing.mailerlite.com/webforms/landing/i5e1h2). Funders are invited to join the (free) [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/) by contacting ReSA at [info@researchsoft.org](mailto:info@researchsoft.org). +To stay up to date on ADORE.software, visit [www.adore.software](http://www.adore.software/). If you want to show your support for the Declaration, you can become a [signatory](https://adore.software/sign/) (for funders) or [supporter](https://adore.software/support/) (for non-funders) and help share the [news](https://adore.software/2023/09/adore-software-is-ready-for-signing/). To receive updates on news related to the Declaration and future activities, subscribe to the [ReSA newsletter](https://landing.mailerlite.com/webforms/landing/i5e1h2). Funders are invited to join the (free) [Research Software Funders Forum](forums/funders-forum/) by contacting ReSA at [info@researchsoft.org](mailto:info@researchsoft.org). -If you're interested in learning more about ReSA and its activities, join our next [Research Software Community Leaders Forum](https://www.researchsoft.org/community-forum/) on 15 November at 20:00 UTC. ReSA's Community Leaders Forum is open to all, and you can [sign up](https://landing.mailerlite.com/webforms/landing/o1n4v3) for calendar invites. +If you're interested in learning more about ReSA and its activities, join our next [Research Software Community Leaders Forum](/forums/community-leadership-forum/) on 15 November at 20:00 UTC. ReSA's Community Leaders Forum is open to all, and you can [sign up](https://landing.mailerlite.com/webforms/landing/o1n4v3) for calendar invites. We would like to express our sincere gratitude to our community, Founding Members, and Organisational Members – without whom none of this work would have been possible. This project has also been made possible in part by grant 2021-000000 from the [Chan Zuckerberg Initiative](https://chanzuckerberg.com/) DAF, an advised fund of the Silicon Valley Community Foundation; and the [Alfred P. Sloan Foundation](https://sloan.org/). + +### Important links + * [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/) + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news) + * [ReSA resources](/resource/resa-resources) + * [Contact us](/about/contact) diff --git a/content/blog/2023-12-21/index.md b/content/blog/2023-12-21/index.md index 2dc1e177..a891b55e 100644 --- a/content/blog/2023-12-21/index.md +++ b/content/blog/2023-12-21/index.md @@ -1,29 +1,16 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "Advocating for Research Software Engineering in Asia: 2023 in Review " -#subtitle = "" -title_align = "left" - -disabled = false -display_date = true -date = "2023-12-20" -author = ["Saranjeet Kaur Bhogal"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = false # Default is false - content = """ - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ +--- +title: "Advocating for Research Software Engineering in Asia: 2023 in Review" +subtitle: "" +date: 2023-12-20 +authors: + - "" + +categories: + - Blog -+++ +summary: "Read more..." +draft: false +--- December 2023 @@ -39,7 +26,7 @@ RSEs. Consequently, much of my focus this year has been on engaging in community **Engaging with Asian communities** -**APAN55 in Nepal**: In March I presented a session on "[Research Software Engineering (RSE) Asia Association: Journey and Future Plans](https://zenodo.org/record/7817687)" at the [55th meeting of the Asia Pacific Advanced Network](https://apan55.apan.net/) (APAN) in Kathmandu, Nepal, as an APAN Fellow. APAN's emerging engagement with RSE topics led to a ReSA [blog post](https://www.researchsoft.org/blog/2023-04/) on the potential role of [National Research and Education Networks (NRENs)](https://en.wikipedia.org/wiki/National_research_and_education_network) in promoting the growth of an RSE community in the Asia-Pacific. The significance of this lies in that NRENs have not traditionally been significantly involved in supporting RSEs in other regions. I have shared my experience of attending APAN55 in the blogpost "[Attending an in-person Asia Pacific Advanced Network (APAN) meeting for the first time](https://www.software.ac.uk/blog/attending-person-asia-pacific-advanced-network-apan-meeting-first-time)". +**APAN55 in Nepal**: In March I presented a session on "[Research Software Engineering (RSE) Asia Association: Journey and Future Plans](https://zenodo.org/record/7817687)" at the [55th meeting of the Asia Pacific Advanced Network](https://apan55.apan.net/) (APAN) in Kathmandu, Nepal, as an APAN Fellow. APAN's emerging engagement with RSE topics led to a ReSA [blog post](/blog/2023-04/) on the potential role of [National Research and Education Networks (NRENs)](https://en.wikipedia.org/wiki/National_research_and_education_network) in promoting the growth of an RSE community in the Asia-Pacific. The significance of this lies in that NRENs have not traditionally been significantly involved in supporting RSEs in other regions. I have shared my experience of attending APAN55 in the blogpost "[Attending an in-person Asia Pacific Advanced Network (APAN) meeting for the first time](https://www.software.ac.uk/blog/attending-person-asia-pacific-advanced-network-apan-meeting-first-time)". My presentation at APAN55, Kathmandu, Nepal. @@ -59,7 +46,7 @@ Conference](https://fab23.fabevent.org) was hosted in Jigme Namgyel Wangchuck Su Workshop 2023](https://www.software.ac.uk/workshop/collaborations-workshop-2023-cw23-0) in Manchester, UK, as an International Fellow of the [Software Sustainability Institute](https://www.software.ac.uk). It was a melting pot of ideas and a convergence of brilliant minds. At this workshop, I also met and interacted with RSEs from different parts of the globe. During the Hack Day of this workshop, our team co-created a set of definitions, guidelines, and criteria to distinguish authors from non-author contributors to a software project. Our output, \"[SORTΓ†D: -Software Role Taxonomy and Authorship Definition](https://sdruskat.net/software-authorship/)\" laid the groundwork for a ReSA [task force](https://www.researchsoft.org/taskforces/) to discuss issues in the context of a software project such as the difference between a contributor and an author, when a contributor becomes an author, and when an author stops being an author. +Software Role Taxonomy and Authorship Definition](https://sdruskat.net/software-authorship/)\" laid the groundwork for a ReSA [task force](/taskforces/) to discuss issues in the context of a software project such as the difference between a contributor and an author, when a contributor becomes an author, and when an author stops being an author. Group photo of attendees at CW23, Manchester, UK. @@ -84,3 +71,9 @@ As I look back on this year, I am filled with gratitude for the opportunities I\ **Acknowledgements** This project has been made possible in part by a grant from The Chan Zuckerberg Initiative DAF, an advised fund of Silicon Valley Community Foundation. + +### Important links + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news) + * [ReSA resources](/resource/resa-resources) + * [Contact us](/about/contact) \ No newline at end of file diff --git a/content/blog/2023-12-21/vertopal.com_RSEAsia2023.zip b/content/blog/2023-12-21/vertopal.com_RSEAsia2023.zip deleted file mode 100644 index d3f5a12f..00000000 --- a/content/blog/2023-12-21/vertopal.com_RSEAsia2023.zip +++ /dev/null @@ -1 +0,0 @@ - diff --git a/content/blog/2023-12/index.md b/content/blog/2023-12/index.md index 2b90fea1..0b7fb8cc 100644 --- a/content/blog/2023-12/index.md +++ b/content/blog/2023-12/index.md @@ -1,33 +1,16 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "Navigating the Unseen: Unveiling the Scope of African Research Software and Systems Engineering " -#subtitle = "" -title_align = "left" - -disabled = false -display_date = true -date = "2023-12-06" -author = ["Anelda Van der Walt"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = false # Default is false - content = """ - * [ReSA newsletter](https://www.researchsoft.org/news/) - * [RSSE Africa](https://rsse.africa/) - * [RSSE Africa LinkedIn group](https://www.linkedin.com/groups/12903402/) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ +--- +title: "Navigating the Unseen: Unveiling the Scope of African Research Software and Systems Engineering" +subtitle: "" +date: 2023-12-06 +authors: + - "" -+++ -![My Image](FwfmuBjWIAIQhg7-1024x768.jpeg) -Participants of the first Research Software Indaba held in Cape Town, South Africa in May 2023. _(Photo credit: Noxolo Chalale)_ +categories: + - Blog + +summary: "Read more..." +draft: false +--- By Anelda Van der Walt (Director, Talarify) @@ -35,6 +18,9 @@ By Anelda Van der Walt (Director, Talarify) The African continent is home to some of the world's most significant multi-country research projects. These projects often include research software and infrastructure development components, but it can be challenging to grasp the African research software and systems engineering (RSSE) landscape. This blog post shares information on ReSA’s activities to support RSSE in this region. It highlights the importance of having both a local community of practice where RSSEs can share their experiences and challenges, lessons learned, and solutions implemented *and* a global dialogue that includes African RSSEs as the RSSE movement matures, develops policies, and solidifies best practices. It concludes with a list of remarkable research projects and organisations that include RSSE components to illustrate how extensive and significant the African RSSE community is. +![My Image](FwfmuBjWIAIQhg7-1024x768.jpeg) +Participants of the first Research Software Indaba held in Cape Town, South Africa in May 2023. _(Photo credit: Noxolo Chalale)_ + In 2023, [Talarify](https://www.talarify.co.za/) was appointed as the African Community Engagement Partner for the [Research Software Alliance](https://www.researchsoft.org/) (ReSA), with funding from a [grant](https://doi.org/10.5281/zenodo.7275397) through the [Chan Zuckerberg Initiative](https://chanzuckerberg.com/). As the ReSA African Community Engagement Partner, we highlight information from the African community to enhance the visibility of local RSSE-related initiatives. We also share news, opportunities and resources from the ReSA community with African RSSEs and organisations involved in research software development through the channels listed below. We have spoken about the international Research Software Engineers (RSE) movement and ReSA’s work at various African forums, such as the inaugural [ZA-REN Week](https://events.tenet.ac.za/event/33/) (view the [presentation](https://zenodo.org/doi/10.5281/zenodo.10013667)). We have also engaged with the global community to share African RSSE news through events such as the Annual Conference for Research Software Engineering (RSECon 2023) (view the [presentation](https://doi.org/10.5281/zenodo.10013746)). Our most significant contribution in the past six months was the first [African Research Software Indaba](https://rse-indaba.org) held in Cape Town, South Africa, in May 2023. The event covered discussions around four themes: @@ -102,3 +88,11 @@ The [**Machine Intelligence Institute of Africa**](https://miiafrica.org/researc **Acknowledgements** This project has been made possible in part by a grant from The Chan Zuckerberg Initiative DAF, an advised fund of Silicon Valley Community Foundation. + +### Important links + * [ReSA newsletter](/news/) + * [RSSE Africa](https://rsse.africa/) + * [RSSE Africa LinkedIn group](https://www.linkedin.com/groups/12903402/) + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA resources](/resource/resa-resources) + * [Contact us](/about/contact) \ No newline at end of file diff --git a/content/blog/2024-01/index.md b/content/blog/2024-01/index.md index c2ae1c99..8782547d 100644 --- a/content/blog/2024-01/index.md +++ b/content/blog/2024-01/index.md @@ -1,29 +1,16 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "Research Software Alliance Community Report 2023" -#subtitle = "" -title_align = "left" - -disabled = false -display_date = false -date = "2024-01-09" -authors = ["Kim Hartley & Michelle Barker"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = false # Default is false - content = """ - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ +--- +title: "Research Software Alliance Community Report 2023" +subtitle: "" +date: 2024-01-09 +authors: + - "" + +categories: + - Blog -+++ +summary: "Read more..." +draft: false +--- January 2024 @@ -36,3 +23,9 @@ Citation: Hartley, Kim & Barker, Michelle (2024). Research Software Alliance Com
+### Important links + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news) + * [ReSA resources](/resa-resources) + * [Contact us](/contact) + \ No newline at end of file diff --git a/content/blog/2024-03/index.md b/content/blog/2024-03/index.md index 016df4b2..cdc314c8 100644 --- a/content/blog/2024-03/index.md +++ b/content/blog/2024-03/index.md @@ -1,31 +1,16 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "The FAIR for Research Software Principles after two years: an adoption update" -#subtitle = "" -title_align = "left" - -disabled = false -display_date = true -date = "2024-03-20" -author = ["Michelle Barker, Leyla Jael Castro, Bernadette Fritzsch, Daniel S. Katz, Carlos Martinez-Ortiz, Anna Niehues, Alexander Struck, Qian Zhang"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = false # Default is false - content = """ - * [Full report DOI: 10.5281/zenodo.10816031](https://doi.org/10.5281/zenodo.10816032) - * [FAIR for Research Software (FAIR4RS) Principles](https://doi.org/10.1038/s41597-022-01710-x) - * [ReSA newsletter](https://www.researchsoft.org/news/) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ +--- +title: "The FAIR for Research Software Principles after two years: an adoption update" +subtitle: "" +date: 2024-03-20 +authors: + - "" + +categories: + - Blog -+++ +summary: "Read more..." +draft: false +--- By Michelle Barker, Leyla Jael Castro, Bernadette Fritzsch, Daniel S. Katz, Carlos Martinez-Ortiz, Anna Niehues, Alexander Struck, Qian Zhang @@ -68,7 +53,7 @@ This reflects that the FAIR4RS Principles are aspirational and high-level, and d - The German Research Council (DFG) published [guidelines for reviewing grant proposals](https://www.dfg.de/resource/blob/168500/a5f52374b2b21a184b9db9e48f411e9d/60-14-en-data.pdf) for Collaborative Research Centers (CRC/SFB) and suggested compliance with the FAIR4RS Principles for archiving and reuse. - The [Digital Research Alliance of Canada](https://alliancecan.ca/en) (the Alliance) published the [National Research Software Strategy 2023](https://zenodo.org/records/10214741). This proposes a set of strategic goals for advancing research software capability, community, and coordination in Canada for 2025-2030, with the FAIR4RS Principles providing a cross-cutting theme. The Alliance is developing a Software Management Plan (SMP) template to promote, cultivate and implement best practices, with an emphasis on the FAIR4RS Principles, for Canadian researchers. The goal is to implement the SMP template in future grant applications. -Resources that support inclusion of FAIR into institutional policies are also relevant. The list of [research institutional policies](https://www.researchsoft.org/software-policies/) that support research software, curated by the Research Software Alliance (ReSA), is part of ongoing work by the joint ReSA and Research Data Alliance (RDA) [Policies in Research Organisations for Research Software (PRO4RS) Working Group](https://www.rd-alliance.org/groups/policies-research-organisations-research-software-pro4rs) to create a community of stakeholders involved in promoting and/or implementing policy that supports research software at the research institution level (such as universities, national laboratories). This includes curation of resources on how to influence policy change, such as [Health Research Performing Organisations (HRPOs) FAIR Guidelines](https://doi.org/10.15497/RDA00078) by Celia Alvarez Romero et al. This provides principles, steps, and resources to support the complex change needed to implement a data policy, which could also be applied to research software policy change. +Resources that support inclusion of FAIR into institutional policies are also relevant. The list of [research institutional policies](/resource/software-policies/) that support research software, curated by the Research Software Alliance (ReSA), is part of ongoing work by the joint ReSA and Research Data Alliance (RDA) [Policies in Research Organisations for Research Software (PRO4RS) Working Group](https://www.rd-alliance.org/groups/policies-research-organisations-research-software-pro4rs) to create a community of stakeholders involved in promoting and/or implementing policy that supports research software at the research institution level (such as universities, national laboratories). This includes curation of resources on how to influence policy change, such as [Health Research Performing Organisations (HRPOs) FAIR Guidelines](https://doi.org/10.15497/RDA00078) by Celia Alvarez Romero et al. This provides principles, steps, and resources to support the complex change needed to implement a data policy, which could also be applied to research software policy change. **2\. Incentives that motivate change:** @@ -81,7 +66,7 @@ Resources that support inclusion of FAIR into institutional policies are also re **3\. Communities that are normalising adoption:** - The RDA [Software Source Code Interest Group](https://www.rd-alliance.org/groups/software-source-code-ig) provides a forum to discuss issues on management, sharing, discovery, archival and provenance of software source code. In October 2023 the [group session](https://www.rd-alliance.org/plenaries/international-data-week-2023-salzburg/mastering-art-research-software-metadata-and-metrics) at the RDA Plenary included a focus on the FAIR-IMPACT Metrics for Assessing Research Software FAIRness ([recording](https://www.youtube.com/watch?v=whfFF1tMdlk)). In addition, this group is the maintenance home for the FAIR4RS Principles. -- The [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/) included a working group focused on implementation of the FAIR4RS Principles, which review the FAIR4RS Principles per the interests of research software funders, to identify gaps. +- The [Research Software Funders Forum](/forums/funders-forum/) included a working group focused on implementation of the FAIR4RS Principles, which review the FAIR4RS Principles per the interests of research software funders, to identify gaps. - [Ten simple rules for starting FAIR discussions in your community](https://doi.org/10.1371/journal.pcbi.1011668) presents guidance and recommendations on how to start up discussions around the implementation of the FAIR Principles and creation of standardised ways of working. Whilst not specific to FAIR4RS Principles, these recommendations can assist in providing understanding of the benefits and barriers of standardisation are, and will support a more effective way of engaging the community. **4\. Training to develop relevant skills:** @@ -117,3 +102,11 @@ Resources that support inclusion of FAIR into institutional policies are also re The publication of the FAIR4RS principles and introductory articles created awareness and raised interest in the research community, reflected in over 200 citations from across the disciplinary spectrum. Examples include the results of searches on Google Scholar for β€œ[FAIR principles for research software (FAIR4RS principles)](https://scholar.google.com/scholar?cluster=15311589062181606409&hl=en&as_sdt=2005&sciodt=0,5)” or β€œ [Introducing the FAIR Principles for research software](https://scholar.google.com/scholar?cites=438298512771465318)”. In addition to work discussing trans-disciplinary application of the FAIR4RS Principles, there are research policy and software management publications referring to and implementing the FAIR4RS Principles. The FAIR4RS Principles have also provided value to the broader research ecosystem by providing a base for other communities to adapt the FAIR Principles to different research objects. Examples include [FAIR AI Models in High Energy Physics](https://doi.org/10.1088/2632-2153/ad12e3), which provides a practical definition of FAIR principles for machine learning and artificial intelligence models in experimental high energy physics, including a FAIR AI project template; and the Open Modeling Foundation’s work to identify, develop, and promote common standards and best practices for [FAIR modelling](https://doi.org/10.1016/j.envsoft.2022.105496), by working with model organisations and individuals active within the social, ecological, environmental, and geophysical sciences. + +### Important links + * [Full report DOI: 10.5281/zenodo.10816031](https://doi.org/10.5281/zenodo.10816032) + * [FAIR for Research Software (FAIR4RS) Principles](https://doi.org/10.1038/s41597-022-01710-x) + * [ReSA newsletter](/news/) + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA resources](/resource/resa-resources) + * [Contact us](/about/contact) \ No newline at end of file diff --git a/content/blog/2024-06-20/index.md b/content/blog/2024-06-20/index.md index 9ae96be8..ca2b1c9e 100644 --- a/content/blog/2024-06-20/index.md +++ b/content/blog/2024-06-20/index.md @@ -1,54 +1,39 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "Funder community focuses on crucial role of research software" -#subtitle = "" -title_align = "left" - -disabled = false -display_date = true -date = "2024-06-20" -author = ["Kim Hartley, Michelle Barker, Daniel S. Katz"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = false - content = """ - * [DOI: https://doi.org/10.5281/zenodo.12191210](https://doi.org/10.5281/zenodo.12191210) - * [ReSA newsletter](https://www.researchsoft.org/news/) - * [Sign up for the ReSA mailing list](https://dashboard.mailerlite.com/forms/778129/110635094443558050/share) - * [ReSA resources](https://www.researchsoft.org/resa-resources/) - * [Contact us](https://www.researchsoft.org/contact/) - """ +--- +title: "Funder community focuses on crucial role of research software" +subtitle: "" +date: 2024-06-20 +authors: + - "" -+++ +categories: + - Blog -![My Image](GRC-meeting.png) +summary: "Read more..." +draft: false +--- -_Daniel S. Katz, Maria Cruz, Michelle Barker, and Florian Mannseicher at the Global Research Council annual meeting in Interlaken, Switzerland - May 2024_ -_(Image credit: Daniel S. Katz)_ +Authors: Kim Hartley, Michelle Barker, Daniel S. Katz +Given that software is an integral component of research processes and a widely used instrument for scientific research in all fields, funders have increasingly recognised and valued research software and the people who develop and maintain it as fundamental and vital to research globally. The Research Software Alliance (ReSA) has led the development of the funders community into the [Research Software Funders Forum](/forums/funders-forum/), which has engaged more than 60 funding organisations from across the globe since its inception in 2022. The Funders Forum has been working diligently to address common challenges to achieve the significant cultural change needed across the research sector and better coordinate investment globally. This group of funders has been instrumental in improving the research software ecosystem to accelerate research outcomes through its commitment to the sustainability of research software and the people who develop and maintain it. ReSA is pleased to highlight some of the Funders Forum’s accomplishments in this blog post, which follows the 2024 [Global Research Council (GRC)](https://globalresearchcouncil.org/) annual meeting in Interlaken, Switzerland. A key outcome of the Funders Forum’s work is the inclusion of a research software side event at the GRC meeting. -Authors: Kim Hartley, Michelle Barker, Daniel S. Katz +![My Image](GRC-meeting.png) -Given that software is an integral component of research processes and a widely used instrument for scientific research in all fields, funders have increasingly recognised and valued research software and the people who develop and maintain it as fundamental and vital to research globally. The Research Software Alliance (ReSA) has led the development of the funders community into the [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/), which has engaged more than 60 funding organisations from across the globe since its inception in 2022. The Funders Forum has been working diligently to address common challenges to achieve the significant cultural change needed across the research sector and better coordinate investment globally. This group of funders has been instrumental in improving the research software ecosystem to accelerate research outcomes through its commitment to the sustainability of research software and the people who develop and maintain it. ReSA is pleased to highlight some of the Funders Forum’s accomplishments in this blog post, which follows the 2024 [Global Research Council (GRC)](https://globalresearchcouncil.org/) annual meeting in Interlaken, Switzerland. A key outcome of the Funders Forum’s work is the inclusion of a research software side event at the GRC meeting. +_Daniel S. Katz, Maria Cruz, Michelle Barker, and Florian Mannseicher at the Global Research Council annual meeting in Interlaken, Switzerland - May 2024_ +_(Image credit: Daniel S. Katz)_ The importance of research software is becoming increasingly clear. Not only has research software expedited scientific progress, it is now a crucial tool for ensuring the reproducibility of research outcomes. Research shows, for example, that [~20% of National Science Foundation (NSF) projects (totalling USD$10b) over 11 years discussed software in their abstracts](https://zenodo.org/records/5748175); [software-intensive projects are a majority of current publications](https://ieeexplore.ieee.org/document/8109183); [33% of research results in new code](https://www.oecd-ilibrary.org/science-and-technology/charting-the-digital-transformation-of-science_1b06c47c-en); and [47% of 13,784 Australian Research Council (ARC) grants between 2010 and 2019 produced software](https://zenodo.org/records/10530616). Moreover, [Software and skills for research computing in the UK](https://doi.org/10.5281/zenodo.10473186) reports that β€œsoftware has transformed every stage of the research lifecycle”. And the Chan Zuckerberg Initiative (CZI) [has released a dataset](https://medium.com/czi-technology/new-data-reveals-the-hidden-impact-of-open-source-in-science-11cc4a16fea2) entirely composed of 67 million software mentions mined from the scientific literature to understand how widely research software and open source tools are used across disciplines, and which software is used where. ## **Overview of the Funders Forum** -The Funders Forum provides a structured platform for research software funders to share practices and address common problems. It has successfully engaged a broad range of participants from government/government-funded, philanthropic, and industry organisations internationally. Regions represented include Africa, Asia, Australasia, Europe, Latin America, and North America. The Funders Forum began in 2022 with support from the [Alfred P. Sloan Foundation](https://sloan.org/), and thanks to the philanthropy’s ongoing support in 2023 and support from ReSA’s [Organisational and Founding Members](https://www.researchsoft.org/membership/), the Funders Forum has continued to grow and become an established community. In its second year, the number of funding organisations that had engaged with the Funders Forum doubled (from 30 to 60). +The Funders Forum provides a structured platform for research software funders to share practices and address common problems. It has successfully engaged a broad range of participants from government/government-funded, philanthropic, and industry organisations internationally. Regions represented include Africa, Asia, Australasia, Europe, Latin America, and North America. The Funders Forum began in 2022 with support from the [Alfred P. Sloan Foundation](https://sloan.org/), and thanks to the philanthropy’s ongoing support in 2023 and support from ReSA’s [Organisational and Founding Members](/about/membership/), the Funders Forum has continued to grow and become an established community. In its second year, the number of funding organisations that had engaged with the Funders Forum doubled (from 30 to 60). As a secretariat, ReSA convenes and manages the Funders Forum community. Funders Forum members engage in a variety of activities that help the community achieve its goals, from general regular meetings to focused working groups. ReSA aims to serve both funders new to research software and those who are well-versed in the ecosystem. The continuity of this collaboration is especially important, as the Funders Forum has played a fundamental role in bringing together a wide range of global stakeholders; supporting the advancement of research software; and increasing recognition of the importance of research software. -ReSA is grateful to all the funders who engage in this important work and support the sustainability of the Funders Forum through ReSA’s [Organisational Membership program](https://www.researchsoft.org/membership/), such as the US National Institutes of Health (NIH). As Dr. Susan Gregurick, Associate Director for Data Science and Director of the [Office of Data Science Strategy (ODSS)](https://datascience.nih.gov/) and Ishwar Chandramouliswaran, Lead, FAIR Data & Resources, ODSS, describe, +ReSA is grateful to all the funders who engage in this important work and support the sustainability of the Funders Forum through ReSA’s [Organisational Membership program](/about/membership/), such as the US National Institutes of Health (NIH). As Dr. Susan Gregurick, Associate Director for Data Science and Director of the [Office of Data Science Strategy (ODSS)](https://datascience.nih.gov/) and Ishwar Chandramouliswaran, Lead, FAIR Data & Resources, ODSS, describe, _"NIH is pleased to support, through membership and relevant activities, the Research Software Alliance (ReSA). ReSA’s mission to bring research -software communities together to collaborate and advance science aligns with the NIH’s mission to accelerate health discovery by supporting the development and sustainment of biomedical research software. As a funders forum participant, we have the opportunity to engage with other funders who share similar missions and learn about their programs including identifying opportunities for potential collaboration. And as an organizational member, NIH and our community benefit from various resources developed by ReSA such as the FAIR for Research Software principles and the catalog of [funding opportunities](https://www.researchsoft.org/funding-opportunities/) made available to the community. NIH is pleased to support this vibrant community and its leadership and we believe it is timely given the critical role of software and AI/ML applications in advancing health research."_ +software communities together to collaborate and advance science aligns with the NIH’s mission to accelerate health discovery by supporting the development and sustainment of biomedical research software. As a funders forum participant, we have the opportunity to engage with other funders who share similar missions and learn about their programs including identifying opportunities for potential collaboration. And as an organizational member, NIH and our community benefit from various resources developed by ReSA such as the FAIR for Research Software principles and the catalog of [funding opportunities](/resource/funding-opportunities/) made available to the community. NIH is pleased to support this vibrant community and its leadership and we believe it is timely given the critical role of software and AI/ML applications in advancing health research."_ Moreover, Dr. Maria Cruz, Programme Leader Open Research Software and Senior Open Science Policy Advisor at the [Dutch Research Council (NWO)](https://www.nwo.nl/en), shares that, @@ -81,21 +66,21 @@ _"Despite its ubiquitous use for scientific research in all fields, research sof _The side event at the GRC annual meeting in Interlaken aimed to discuss and evaluate, on a global scale, how the development, use, and evolution of research software can be advanced in a concerted manner via concrete actions by research funding organizations. For example, the side event addressed how funding organizations can help tackle key social challenges facing the research software community and thus contribute to a culture change toward open, digital science._ -_This initiative is another step in the ongoing collaboration between DFG, NWO, and ReSA regarding the topic research software. It originated as part of activities around the Funders Forum and was initiated by FAPESP. DFG and NWO have recently joined ReSA as organisational members and will thus continue to help contribute to ReSA's [vision](https://www.researchsoft.org/about-resa/) in the long term. Moreover, DFG has demonstrated its support of research software through significant investments in research software sustainability, quality, and reusability. DFG [recently announced a new funding programme](https://www.dfg.de/en/news/news-topics/announcements-proposals/2024/ifr-24-41) to facilitate the development of infrastructures for research software. The [Research Software Infrastructures program](https://www.dfg.de/en/research-funding/funding-opportunities/programmes/infrastructure/lis/funding-opportunities/research-software-infrastructures) aims to pave the way for the improvement of subject-specific handling of research software while supporting the development of a community-based framework of research software infrastructures in Germany."_ +_This initiative is another step in the ongoing collaboration between DFG, NWO, and ReSA regarding the topic research software. It originated as part of activities around the Funders Forum and was initiated by FAPESP. DFG and NWO have recently joined ReSA as organisational members and will thus continue to help contribute to ReSA's [vision](/about/) in the long term. Moreover, DFG has demonstrated its support of research software through significant investments in research software sustainability, quality, and reusability. DFG [recently announced a new funding programme](https://www.dfg.de/en/news/news-topics/announcements-proposals/2024/ifr-24-41) to facilitate the development of infrastructures for research software. The [Research Software Infrastructures program](https://www.dfg.de/en/research-funding/funding-opportunities/programmes/infrastructure/lis/funding-opportunities/research-software-infrastructures) aims to pave the way for the improvement of subject-specific handling of research software while supporting the development of a community-based framework of research software infrastructures in Germany."_ The Funders Forum Working Group (WG) on a multilateral funding call for research software has played a pivotal role in forming connections with the GRC and supporting international collaboration. The WG also developed a draft call, based on [results from a survey](https://zenodo.org/records/10651247) completed by 280 scientists worldwide about their interest in an international funding call on research software development. The WG is now exploring options (e.g., joining an existing multilateral agreement) and considering next steps, and is looking forward to expressions of interest that may arise from other funders after this GRC side meeting. ### **ADORE.software and Toolkit** -The [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/) (ADORE.software) and its complementary [toolkit](https://adore.software/toolkit/) represent a significant achievement that builds on actions undertaken by the Funders Forum, ReSA, research funding organisations, and the community to develop awareness about the role funders can play in sustaining software in the longer term. [ADORE.software](https://adore.software/) is a first step to formalise, on a global level, the basic principles and recommendations related to funding the sustainability of research software, including the people needed to achieve this goal. The Declaration is an outcome of the first [International Funders Workshop: The Future of Research Software](https://future-of-research-software.org/). Funders Forum members have engaged in the drafting and adoption of the Declaration, providing important inputs throughout the process. [Version 1.0 of ADORE.software](https://adore.software/declaration/) was released in September 2023, prior to the [second funders workshop](https://adore.software/international-research-software-funders-workshop/) in Montreal and online. Since the Declaration’s [release for signing](https://www.researchsoft.org/blog/2023-09-15/), several funding organisations have become [signatories](https://adore.software/signatories/) and a number of non-funders and individuals have expressed their [support](https://adore.software/get-involved/). +The [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/) (ADORE.software) and its complementary [toolkit](https://adore.software/toolkit/) represent a significant achievement that builds on actions undertaken by the Funders Forum, ReSA, research funding organisations, and the community to develop awareness about the role funders can play in sustaining software in the longer term. [ADORE.software](https://adore.software/) is a first step to formalise, on a global level, the basic principles and recommendations related to funding the sustainability of research software, including the people needed to achieve this goal. The Declaration is an outcome of the first [International Funders Workshop: The Future of Research Software](https://future-of-research-software.org/). Funders Forum members have engaged in the drafting and adoption of the Declaration, providing important inputs throughout the process. [Version 1.0 of ADORE.software](https://adore.software/declaration/) was released in September 2023, prior to the [second funders workshop](https://adore.software/international-research-software-funders-workshop/) in Montreal and online. Since the Declaration’s [release for signing](/blog/2023-09-15/), several funding organisations have become [signatories](https://adore.software/signatories/) and a number of non-funders and individuals have expressed their [support](https://adore.software/get-involved/). ### **International Research Software Funders Workshops** The International Research Software Funders Workshops, which have occurred annually since 2022, are evidence of funders’ commitment to supporting research software sustainability and international collaboration. Funders Forum members have been actively involved in co-hosting the workshops with ReSA, planning the agendas, giving talks, and facilitating breakout sessions for these events. -In November 2022, the [Netherlands eScience Center](https://www.esciencecenter.nl/) and ReSA organised the inaugural [International Funders Workshop: The Future of Research Software](https://www.future-of-research-software.org/). During the workshop, participants explored how to effectively fund new and existing research software. The resulting [blog post](https://www.researchsoft.org/blog/2022-11/) and [report](https://zenodo.org/records/7384410#.Y4k4VexBw3E) summarise the importance of what has now become an annual event. Prior to the workshop, the [Australian Research Data Commons (ARDC)](https://ardc.edu.au/) and ReSA co-hosted a workshop on [research software visibility](https://future-of-research-software.org/pre-workshop/). Slides from the pre-workshop event are available via ReSA’s [Zenodo community](https://zenodo.org/communities/resa/records?q=&l=list&p=1&s=10). +In November 2022, the [Netherlands eScience Center](https://www.esciencecenter.nl/) and ReSA organised the inaugural [International Funders Workshop: The Future of Research Software](https://www.future-of-research-software.org/). During the workshop, participants explored how to effectively fund new and existing research software. The resulting [blog post](/blog/2022-11/) and [report](https://zenodo.org/records/7384410#.Y4k4VexBw3E) summarise the importance of what has now become an annual event. Prior to the workshop, the [Australian Research Data Commons (ARDC)](https://ardc.edu.au/) and ReSA co-hosted a workshop on [research software visibility](https://future-of-research-software.org/pre-workshop/). Slides from the pre-workshop event are available via ReSA’s [Zenodo community](https://zenodo.org/communities/resa/records?q=&l=list&p=1&s=10). -The [Digital Research Alliance of Canada](https://alliancecan.ca/en) and ReSA co-hosted the second [International Research Software Funders Workshop](https://adore.software/international-research-software-funders-workshop/) in September 2023. Experts explored how research software funders can facilitate capacity building through funder practices; research software platforms, infrastructure, and communities; and new initiatives. The outcomes of this workshop are highlighted in the resulting [blog post](https://www.researchsoft.org/blog/2023-10/) and [report](https://zenodo.org/records/10552116) collectively written by participants. Prior to this workshop, ReSA delivered a half-day session on [How to Explicitly Support Research Software as Part of Your Funding Program](https://docs.google.com/presentation/d/1UP_UGOPxYi0R4UAE5PRpGWoJzrQ2FkVmCdDBILR6t2U/edit#slide=id.g241153165a8_0_0) to introduce funders to research software, and to help them understand that they already fund research software. There was also a half-day session on [CiteSoftware](https://zenodo.org/records/8356278), led by a group of stakeholders aiming to drive the adoption of a common research software preservation and citation guidance resource for the research community. +The [Digital Research Alliance of Canada](https://alliancecan.ca/en) and ReSA co-hosted the second [International Research Software Funders Workshop](https://adore.software/international-research-software-funders-workshop/) in September 2023. Experts explored how research software funders can facilitate capacity building through funder practices; research software platforms, infrastructure, and communities; and new initiatives. The outcomes of this workshop are highlighted in the resulting [blog post](/blog/2023-10/) and [report](https://zenodo.org/records/10552116) collectively written by participants. Prior to this workshop, ReSA delivered a half-day session on [How to Explicitly Support Research Software as Part of Your Funding Program](https://docs.google.com/presentation/d/1UP_UGOPxYi0R4UAE5PRpGWoJzrQ2FkVmCdDBILR6t2U/edit#slide=id.g241153165a8_0_0) to introduce funders to research software, and to help them understand that they already fund research software. There was also a half-day session on [CiteSoftware](https://zenodo.org/records/8356278), led by a group of stakeholders aiming to drive the adoption of a common research software preservation and citation guidance resource for the research community. The [SciLifeLab](https://www.scilifelab.se/) [Data Centre](https://www.scilifelab.se/data/) and ReSA are hosting the third funders workshop in Uppsala, Sweden, this September. The [workshop](https://adore.software/2024-international-research-software-funders-workshop/) will focus on operationalising the Declaration by developing a monitoring framework to benchmark how funders are currently supporting the sustainability of research software, using the recommendations as a starting point. Additionally, the workshop will examine how such a monitoring framework can be leveraged by funders and the community to prioritise critical areas for improvement. @@ -109,12 +94,12 @@ The Funders Forum has explored a variety of pertinent topics through its regular - Overview of the research software funding landscape - see [report](https://zenodo.org/records/6102487) - Overview of the research software people landscape -- Lorentz Center workshop: Vive la diffΓ©rence – Research Software Engineers - see [blog post](https://www.researchsoft.org/blog/2022-07/), cross-posted with Better Scientific Software (BSSw) -- FAIR for Research Software (FAIR4RS) - see [blog post](https://www.researchsoft.org/blog/2022-08/) +- Lorentz Center workshop: Vive la diffΓ©rence – Research Software Engineers - see [blog post](/blog/2022-07/), cross-posted with Better Scientific Software (BSSw) +- FAIR for Research Software (FAIR4RS) - see [blog post](/blog/2022-08/) - How can funders encourage entry, retention, diversity and inclusion in research software careers? - see [report](https://doi.org/10.5281/zenodo.7117842) - Funding and evaluating open source software for research - How to collaborate informally -- Open Source Program Offices - see [blog post](https://www.researchsoft.org/blog/2023-06/) +- Open Source Program Offices - see [blog post](/blog/2023-06/) - Sustainable software investment - Bridging the gap between prototype and software infrastructure - Joint funding initiatives @@ -134,11 +119,11 @@ The Funders Forum serves a broad range of newcomers and experienced research sof **Are you a funder who is interested in learning more about research software and how to explicitly support research software as part of your funding program?** - Join the Funders Forum by [contacting ReSA](mailto:info@researchsoft.org) (or encourage your funders to join!) -- Become a ReSA [Organisational Member](https://www.researchsoft.org/membership/) to demonstrate your commitment to international collaboration and innovation for research; and connect with other decision makers and key influencers +- Become a ReSA [Organisational Member](/about/membership/) to demonstrate your commitment to international collaboration and innovation for research; and connect with other decision makers and key influencers - Show your support for ADORE.software by becoming a Declaration [signatory or supporter](https://adore.software/get-involved/) -- Check out our research software funding opportunities [database](https://www.researchsoft.org/funding-opportunities/) or [add to it](https://forms.gle/r4Jw4swUd1SXigZc9) -- [Join](https://www.researchsoft.org/taskforces/) or [support](https://www.researchsoft.org/tf-support/) a ReSA task force -- Subscribe to our monthly [newsletter](https://www.researchsoft.org/news/) and follow us on [LinkedIn](https://www.linkedin.com/company/research-software-alliance/), [Slack](https://researchsoft.slack.com/join/shared_invite/zt-1flmrglww-SoWjAK_5TJyqLU_~Jx697w#/shared-invite/email), and [Mastodon](https://fosstodon.org/@researchsoft) +- Check out our research software funding opportunities [database](/resource/funding-opportunities/) or [add to it](https://forms.gle/r4Jw4swUd1SXigZc9) +- [Join](/taskforces/) or [support](/taskforces/tf-support/) a ReSA task force +- Subscribe to our monthly [newsletter](/news/) and follow us on [LinkedIn](https://www.linkedin.com/company/research-software-alliance/), [Slack](https://researchsoft.slack.com/join/shared_invite/zt-1flmrglww-SoWjAK_5TJyqLU_~Jx697w#/shared-invite/email), and [Mastodon](https://fosstodon.org/@researchsoft) We look forward to welcoming you! @@ -146,3 +131,9 @@ We look forward to welcoming you! This project has been made possible in part by grants from the Alfred P. Sloan Foundation: G-2022-19564 and G-2021-17001. +### Important links + * [DOI: https://doi.org/10.5281/zenodo.12191210](https://doi.org/10.5281/zenodo.12191210) + * [ReSA newsletter](/news/) + * [Sign up for the ReSA mailing list](https://dashboard.mailerlite.com/forms/778129/110635094443558050/share) + * [ReSA resources](/resource/resa-resources/) + * [Contact us](/about/contact/) diff --git a/content/blog/2024-06/index.md b/content/blog/2024-06/index.md index 7e6685f4..d7f88965 100644 --- a/content/blog/2024-06/index.md +++ b/content/blog/2024-06/index.md @@ -1,31 +1,16 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "Resources for supporting policy change in research institutions in practice" -#subtitle = "" -title_align = "left" - -disabled = false -display_date = true -date = "2024-06-10" -author = ["Michelle Barker, Domhnall Carlin, Jeremy Cohen, Eric A. Jensen, Catherine M. Jones, Carlos Martinez Ortiz and Dan Rudmann"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = false # Default is false - content = """ - * [Full report DOI: 10.5281/zenodo.11529658](https://doi.org/10.5281/zenodo.11529659) - * [RDA & ReSA: Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/forum/topic/policies-in-research-organisations-for-research-software-pro4rs-working-group/) - * [ReSA newsletter](https://www.researchsoft.org/news/) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ +--- +title: "Resources for supporting policy change in research institutions in practice" +subtitle: "" +date: 2024-06-10 +authors: + - "" + +categories: + - Blog -+++ +summary: "Read more..." +draft: false +--- June 2024 @@ -37,4 +22,12 @@ As software has become an increasingly important element of research across almo Following on from this activity to collate a set of resources, the outputs from Sub Group 2 detailed in this report will feed into PRO4RS Working Group Sub Groups 3 and 4 which will undertake an analysis of existing policies and identification of areas where policies are lacking, respectively. The resources collated in this report will help to better understand existing approaches to research software policy and ensure that the PRO4RS Working Group can effectively develop the planned case studies in Sub Group 5 which will ultimately help to increase adoption of policies within research institutions. -If you’d like to stay engaged with this work, become a member of the [PRO4RS Working Group](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs). This will help you keep up-to-date with group activities, including opportunities to be involved. You can also receive updates through the ReSA [newsletter](https://www.researchsoft.org/news/). Please spread the word by sharing details of this work with peers, collaborators and institution management. +If you’d like to stay engaged with this work, become a member of the [PRO4RS Working Group](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs). This will help you keep up-to-date with group activities, including opportunities to be involved. You can also receive updates through the ReSA [newsletter](/news/). Please spread the word by sharing details of this work with peers, collaborators and institution management. + +### Important links + * [Full report DOI: 10.5281/zenodo.11529658](https://doi.org/10.5281/zenodo.11529659) + * [RDA & ReSA: Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/forum/topic/policies-in-research-organisations-for-research-software-pro4rs-working-group/) + * [ReSA newsletter](/news/) + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA resources](/resource/resa-resources/) + * [Contact us](/about/contact/) diff --git a/content/blog/2024-08/index.md b/content/blog/2024-08/index.md index 0dc28725..779a71fd 100644 --- a/content/blog/2024-08/index.md +++ b/content/blog/2024-08/index.md @@ -1,35 +1,16 @@ - +++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "Research software is critical to the future of AI-driven research" -#subtitle = "" -title_align = "left" - -disabled = false -display_date = true -date = "2024-08-22" -authors = ["Michelle Barker, Kim Hartley, Daniel S. Katz, Richard Littauer, Qian Zhang, Shurui Zhou, Jyoti Bhogal"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = false - content = """ - * [DOI: https://doi.org/10.5281/zenodo.13350747](https://doi.org/10.5281/zenodo.13350747) - * [Digital Research Alliance of Canada](https://alliancecan.ca/en) - * [ReSA newsletter](https://www.researchsoft.org/news/) - * [Sign up for the ReSA mailing list](https://dashboard.mailerlite.com/forms/778129/110635094443558050/share) - * [ReSA resources](https://www.researchsoft.org/resa-resources/) - * [Contact us](https://www.researchsoft.org/contact/) - """ +--- +title: "Research software is critical to the future of AI-driven research" +subtitle: "" +date: 2024-08-22 +authors: + - "" -+++ - -![My Image](AI-research-software.jpg) -_Image was created with the assistance of AI._ +categories: + - Blog +summary: "Read more..." +draft: false +--- By Michelle Barker, Kim Hartley, Daniel S. Katz, Richard Littauer, Qian Zhang, Shurui Zhou, Jyoti Bhogal @@ -37,6 +18,9 @@ August 2024 [This blog post has been cross-posted by the [Netherlands eScience Center](https://blog.esciencecenter.nl/research-software-is-critical-to-the-future-of-ai-driven-research-8a408eea6879) and the [Software Sustainability Institute](https://www.software.ac.uk/blog/research-software-critical-future-ai-driven-research).] +![My Image](AI-research-software.jpg) +_Image was created with the assistance of AI._ + ### Abstract This [position paper](https://doi.org/10.5281/zenodo.13350748) provides a statement on the criticality of research software in artificial intelligence (AI)-driven research and makes recommendations for stakeholders on how to consider research software in their AI goals. This is needed to ensure that the focus on technological infrastructure to support AI acceleration includes research software and its personnel as a vital part of that infrastructure. This paper discusses both research software that supports generative AI, which is now being explored today as a tool to enable new research, as well as more traditional machine learning, which has demonstrated impact in research in most disciplines (particularly in the last decade). @@ -75,9 +59,9 @@ The research community personnel who develop and maintain research software are The people who do this work can have many titles, including researchers, research software engineers (RSEs), data scientists, computer scientists, data engineers, bioinformaticians, students, community scientists, and many more (Hettrick et al. 2022; Barker and Buchhorn 2022). The inclusion of improved support for the staff who develop and maintain research software is also emphasised in the UK-focused [Review of Digital Research Infrastructure Requirements for AI](https://www.turing.ac.uk/sites/default/files/2022-09/ukri-requirements-report_final_edits.pdf) (Lazauskas et al. 2022). This report’s findings included emphasis that β€œany investment in any infrastructure for AI would need to be matched by investments in training and support”, with the second highest priority areas identified as funding for RSEs (Lazauskas et al. 2022). The UK’s [ExCALIBUR RSE Knowledge Integration Landscape Review](https://doi.org/10.5281/zenodo.4986062) also highlights the need for RSEs to acquire new skills relevant to AI, and notes that β€œThese skill sets also begin to deviate from what is demanded by industries, requiring novel AI software and capabilities'' (Parsons et al. 2021). -ReSA’s initial research on recognition of research software in the AI landscape was presented in March 2024 at its [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/) meetings. This forum engages representatives from over 60 funding organisations in online meetings and hybrid venues (ReSA 2024a). Attendees of these March meetings were immediately able to utilise these early findings from the presentation to strengthen their own cases for investment in research software within AI-dominated programs, where the criticality of this building block is not yet understood by many in their organisations. It became clear that further research on best practices would support not only funders, but a variety of stakeholders in the international research software community. +ReSA’s initial research on recognition of research software in the AI landscape was presented in March 2024 at its [Research Software Funders Forum](/forums/funders-forum/) meetings. This forum engages representatives from over 60 funding organisations in online meetings and hybrid venues (ReSA 2024a). Attendees of these March meetings were immediately able to utilise these early findings from the presentation to strengthen their own cases for investment in research software within AI-dominated programs, where the criticality of this building block is not yet understood by many in their organisations. It became clear that further research on best practices would support not only funders, but a variety of stakeholders in the international research software community. -The research in this position paper was undertaken as a partnership between [ReSA](https://www.researchsoft.org/) and the [Digital Research Alliance of Canada](https://alliancecan.ca/en), one of ReSA’s [Founding Members](https://www.researchsoft.org/about-resa/). One of ReSA’s key functions is to ensure that research software is considered in international discussions on how to advance research capabilities. ReSA is a global organisation that unites decision-makers and influencers across the international research software community. The Digital Research Alliance of Canada is a non-profit organisation funded by the Government of Canada. It advances Canada’s position as a leader in the knowledge economy on the international stage by integrating, championing and funding the infrastructure and activities required, with research software as one of the three main areas. Other community leaders were also brought in on this paper in order to present more balanced perspectives on the need for research software in AI, particularly from institutional and open source perspectives. +The research in this position paper was undertaken as a partnership between [ReSA](https://www.researchsoft.org/) and the [Digital Research Alliance of Canada](https://alliancecan.ca/en), one of ReSA’s [Founding Members](/about/). One of ReSA’s key functions is to ensure that research software is considered in international discussions on how to advance research capabilities. ReSA is a global organisation that unites decision-makers and influencers across the international research software community. The Digital Research Alliance of Canada is a non-profit organisation funded by the Government of Canada. It advances Canada’s position as a leader in the knowledge economy on the international stage by integrating, championing and funding the infrastructure and activities required, with research software as one of the three main areas. Other community leaders were also brought in on this paper in order to present more balanced perspectives on the need for research software in AI, particularly from institutional and open source perspectives. ### 3. Consequences if research software is not supported There is a tendency for AI initiatives to minimise or exclude focus on research software. This minimisation creates challenges. To show this, evidence on the issues in supporting research software, including open-source scientific software, is also presented here. @@ -123,8 +107,8 @@ Research software needs to be included in AI strategies. Our recommendations for Other ways to help ensure that the focus on technological infrastructure to support AI acceleration includes research software and its personnel as a vital part of that infrastructure include: - [Signing](https://adore.software/get-involved/) the [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/) (ADORE.software), which represents a first step to formalise, on a global level, the basic principles and recommendations related to funding the sustainability of research software, including the people needed to achieve this goal. -- Supporting ReSA in its aim to ensure that research software is considered in international discussions on how to advance research capabilities. Become a ReSA [Organisational Member](https://www.researchsoft.org/membership/), [support a task force](https://www.researchsoft.org/tf-support/), or [donate](https://www.researchsoft.org/donate/). -- For funders, joining the [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/), a global collaboration of funding organisations committed to supporting research software, and those who develop and maintain it, as fundamental and vital to research. +- Supporting ReSA in its aim to ensure that research software is considered in international discussions on how to advance research capabilities. Become a ReSA [Organisational Member](/about/membership/), [support a task force](/taskforces/tf-support/), or [donate](/about/donate/). +- For funders, joining the [Research Software Funders Forum](/forums/funders-forum/), a global collaboration of funding organisations committed to supporting research software, and those who develop and maintain it, as fundamental and vital to research. ### References Barker, Michelle, Elena Breitmoser, Philippa Broadbent, Neil Chue Hong, Simon Hettrick, Ioanna Lampaki, Anthony Quinn, and Rebecca Taylor. 2024. β€˜Software and Skills for Research Computing in the UK’. Zenodo. https://doi.org/10.5281/ZENODO.10473186. @@ -208,3 +192,11 @@ UKRI. 2023. β€˜Β£300 Million to Launch First Phase of New AI Research Resource US-RSE Association and IEEE Computer Society. 2023. β€˜Research Software Engineers: Creating a Career Pathβ€”and a Career’. Zenodo. https://doi.org/10.5281/ZENODO.10073232. Van Tuyl, Steve (Ed.). 2023. β€˜Hiring, Managing, and Retaining Data Scientists and Research Software Engineers in Academia: A Career Guidebook from ADSA and US-RSE’. Zenodo. https://doi.org/10.5281/ZENODO.8274378. + +### Important links + * [DOI: https://doi.org/10.5281/zenodo.13350747](https://doi.org/10.5281/zenodo.13350747) + * [Digital Research Alliance of Canada](https://alliancecan.ca/en) + * [ReSA newsletter](/news/) + * [Sign up for the ReSA mailing list](https://dashboard.mailerlite.com/forms/778129/110635094443558050/share) + * [ReSA resources](/resource/resa-resources/) + * [Contact us](/about/contact/) diff --git a/content/blog/2024-09-23/index.md b/content/blog/2024-09-23/index.md index d0fe62c9..60dd07d9 100644 --- a/content/blog/2024-09-23/index.md +++ b/content/blog/2024-09-23/index.md @@ -1,28 +1,17 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog", "Task force"] +--- +title: "Directions for Research Software Engineering Research" +subtitle: "" +date: 2024-09-19 +authors: + - "" -title = "Directions for Research Software Engineering Research" -#subtitle = "" -title_align = "left" +categories: + - Blog + - Task force -display_date = true -date = "2024-09-19" -authors = ["Michelle Barker", "Wilhelm Hasselbring"] - -[sidebar] - title = "Important Links" - align = "right" - #sticky = true # Default is false - content = """ - * [DOI: https://doi.org/10.59350/kr4cp-1vf81](https://doi.org/10.59350/kr4cp-1vf81) - * [International RSE Research (IRSER)](https://irser.github.io/) - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - """ - -+++ +summary: "Read more..." +draft: false +--- _September, 2024_ @@ -69,3 +58,9 @@ An online [questionnaire](https://docs.google.com/forms/d/e/1FAIpQLSf9lgs194WrFW * How do we define the critical research software that underpins research, and the impact if it was not available? RSE research offers an exciting opportunity to enhance the way software is developed in research contexts. The outcomes from the panel discussion provide valuable insights for future research directions, inviting the community to contribute to a growing field that sits at the intersection of research and research software development. For updates and further details, visit [International RSE Research](https://irser.github.io/) (IRSER). + +### Important links + * [DOI: https://doi.org/10.59350/kr4cp-1vf81](https://doi.org/10.59350/kr4cp-1vf81) + * [International RSE Research (IRSER)](https://irser.github.io/) + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news) diff --git a/content/blog/2024-09-24/index.md b/content/blog/2024-09-24/index.md index aaad9d19..1b823753 100644 --- a/content/blog/2024-09-24/index.md +++ b/content/blog/2024-09-24/index.md @@ -1,33 +1,16 @@ - +++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "RSE Worldwide: Opportunities to Strengthen the Global RSE Community" -#subtitle = "" -title_align = "left" - -disabled = false -display_date = true -date = "2024-09-25" -authors = ["Michelle Barker, Sandra Gesing, Rowland Mosbergen, Uwe Schmitt, Carlos Martinez-Ortiz"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = false - content = """ - * [Blog post DOI: https://doi.org/10.59350/fzjbr-tna85](https://doi.org/10.59350/fzjbr-tna85) - * [RSE Worldwide sessions](https://rsecon24.society-rse.org/programme/rse-worldwide/) - * [Research Software Engineering Conference](https://rsecon24.society-rse.org/programme/rse-worldwide/) - * [ReSA newsletter](https://www.researchsoft.org/news/) - * [Sign up for the ReSA mailing list](https://dashboard.mailerlite.com/forms/778129/110635094443558050/share) - """ +--- +title: "RSE Worldwide: Opportunities to Strengthen the Global RSE Community" +subtitle: "" +date: 2024-09-25 +authors: + - "" -+++ +categories: + - Blog -![My Image](2024-09-24-image.jpeg) -_Image credit: Viri GutiΓ©rrez, [Lummi](https://www.lummi.ai/photo/global-connectivity-work-on-laptop-hhipk)_ +summary: "Read more..." +draft: false +--- By Michelle Barker, Sandra Gesing, Rowland Mosbergen, Uwe Schmitt, Carlos Martinez-Ortiz @@ -35,6 +18,9 @@ September 2024 The [RSE Worldwide sessions](https://rsecon24.society-rse.org/programme/rse-worldwide/) at this year’s [Research Software Engineering Conference](https://rsecon24.society-rse.org/) (RSECon) in the UK continue to address the importance of connecting these emerging communities with the global research software community. The RSE community continues to grow globally, with numerous regional and national conferences and associations. While there are established networks in many parts of the world, there are still regions where research software engineering happens without structured support. Each community brings unique regional and cultural contexts, and while challenges differ, the lessons learned in one area can be invaluable to others. +![My Image](2024-09-24-image.jpeg) +_Image credit: Viri GutiΓ©rrez, [Lummi](https://www.lummi.ai/photo/global-connectivity-work-on-laptop-hhipk)_ + The annual sessions at RSECon offer a platform for members of the diverse global RSE community to meet, network, and share experiences. They aim to support emerging communities by leveraging the knowledge of established networks while promoting international coordination and cooperation. These sessions also seek to counteract potential siloes by discussing ways to foster strong local communities while maintaining global engagement and collaboration. A list of [resources on how to create an RSE group (within an organisation) or association (national, etc)](https://docs.google.com/document/d/1pQTBTApvwr0G61M1m8h4BypAorWFe6heiiZWwWk7ZY8/edit) has been compiled by the Research Software Alliance (ReSA) to collate existing advice, some of which are also collated in resources such as [RSE Groups in the UK; Origins, Organisational Context, and Practices - 'RSE Roadtrip' Planning Document](https://zenodo.org/records/7852661#.ZFoEdexBwU6) by Kim Martin, [CommuneRS: A Community of Research Software Communities](https://github.com/EllaKaye/communers?tab=readme-ov-file) by Ella Kaye et al., [ADORE.software toolkit](https://adore.software/toolkit/) by ReSA, and [RSE Resources](https://us-rse.org/resources/rses/) by US-RSE. Contributions to the [Resources on how to create an RSE group (within an organisation) or association (national, etc)](https://docs.google.com/document/d/1pQTBTApvwr0G61M1m8h4BypAorWFe6heiiZWwWk7ZY8/edit) are welcome either as comments in the document itself, or by emailing [info@researchsoft.org](mailto:info@researchsoft.org). @@ -53,3 +39,10 @@ The RSE Worldwide sessions commenced with a keynote by Sandra Gesing on US-RSE f - US: US-RSE (Sandra Gesing): US-RSE [has grown](https://us-rse.org/join/) from 20 members in 2018 to over 2700 in 2024. US-RSE is a grass-root organisation that supports RSEs through several initiatives: [resources](https://us-rse.org/resources/rses/), community-building activities such as over [12 working groups](https://us-rse.org/working-groups/), [community calls](https://us-rse.org/events/), and the annual conference - [USRSE’24](https://us-rse.org/usrse24/) comes up in October 2024 - and initiatives like the [awards](https://us-rse.org/community-awards/) and the [US-RSE Community Fund](https://us-rse.org/community-funds/). Currently, US-RSE is setting up an organisational membership model with organisations being able to join as founding members for life. The organisation's future plans include securing more funding to benefit the community, to support volunteers, and to invest in creating sustainable career paths for RSEs. Participants engaged in discussions around key topics such as building RSE communities, and ensuring volunteer sustainability; and established communities shared strategies for securing funding and organisational support. ReSA also shared updates on its activities, including the scoping of an international research software conference. This session highlighted the need for continued collaboration and international engagement to support both emerging and established RSE groups worldwide. + +### Important links + * [Blog post DOI: https://doi.org/10.59350/fzjbr-tna85](https://doi.org/10.59350/fzjbr-tna85) + * [RSE Worldwide sessions](https://rsecon24.society-rse.org/programme/rse-worldwide/) + * [Research Software Engineering Conference](https://rsecon24.society-rse.org/programme/rse-worldwide/) + * [ReSA newsletter](/news/) + * [Sign up for the ReSA mailing list](https://dashboard.mailerlite.com/forms/778129/110635094443558050/share) diff --git a/content/blog/2024-10/Group_image_3_(1).jpeg b/content/blog/2024-10/Group_image_3_(1).jpeg deleted file mode 100644 index 171f7b4a..00000000 Binary files a/content/blog/2024-10/Group_image_3_(1).jpeg and /dev/null differ diff --git a/content/blog/2024-10/index.md b/content/blog/2024-10/index.md index 69eaff77..b489f97f 100644 --- a/content/blog/2024-10/index.md +++ b/content/blog/2024-10/index.md @@ -1,32 +1,16 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "International Research Software Funders Workshop 2024 – Building a Sustainable Future for Research Software" -#subtitle = "" -title_align = "left" - -display_date = true -date = "2024-10-16" -authors = ["Michelle Barker, Chris Erdmann, Eric Jensen, Kim Hartley, Anna Henriksson, SunΓ© Joubert"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = false # Default is false - content = """ - * [Blog post DOI: https://doi.org/10.59350/j0jjs-0xn06](https://doi.org/10.59350/j0jjs-0xn06) - * [ReSA newsletter](https://www.researchsoft.org/news/) - * [Sign up for the ReSA mailing list](https://dashboard.mailerlite.com/forms/778129/110635094443558050/share) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ +--- +title: "International Research Software Funders Workshop 2024 – Building a Sustainable Future for Research Software" +subtitle: "" +date: 2024-10-16 +authors: + - "" -+++ +categories: + - Blog -![My Image](Group_image_3.jpeg) -_Image credit: [SciLifeLab](https://www.scilifelab.se/)_ +summary: "Read more..." +draft: false +--- By Michelle Barker, Chris Erdmann, Eric Jensen, Kim Hartley, Anna Henriksson, SunΓ© Joubert @@ -34,6 +18,9 @@ October 2024 The 2024 [International Research Software Funders Workshop](https://adore.software/2024-international-research-software-funders-workshop/) continued to progress the way funders sustain and support research software. This hybrid event in September in Uppsala, Sweden, brought together [funders and experts in research software](https://adore.software/2024-international-research-software-funders-workshop/) to discuss operationalising the [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/) (ADORE.software). ADORE.software aims to raise awareness of the role of funding practice in the sustainability of research software, and to improve that practice. +![My Image](Group_image_3.jpeg) +_Image credit: [SciLifeLab](https://www.scilifelab.se/)_ + This year's workshop focused on developing funders’ monitoring and evaluation frameworks to assess what is working and why in funders’ support for research software impact. Presentations from this year’s Funder Workshop and the [EVERSE](https://everse.software/) (European Virtual Institute for Research Software Excellence) satellite event are available [here](https://zenodo.org/communities/2024-research-software-funders-workshop/records?q=&l=list&p=1&s=10&sort=newest). See also [SciLifeLab and Data Centre co-host two events: Elevating the importance of research software in Sweden](https://www.scilifelab.se/news/scilifelab-and-data-centre-co-host-two-events-elevating-the-importance-of-research-software-in-sweden/) and a summary of the EVERSE event, [Building the future of research software as a first-class citizen in science; a global perspective](https://doi.org/10.5281/zenodo.13915755). The first day of the [agenda](https://adore.software/wp-content/uploads/2024/10/2024-Funders-Workshop-agenda.pdf) set the stage for monitoring and evaluating research software impact. It began with introductions from the event co-hosts, the [SciLifeLab](https://www.scilifelab.se/) [Data Centre](https://www.scilifelab.se/data/) and the [Research Software Alliance](https://www.researchsoft.org/) (ReSA). This was followed by a keynote focusing on mapping the impact of software in science, by Dario Taraborelli from the Chan Zuckerberg Initiative. Dario shared lessons learned from a [report](https://doi.org/10.5281/zenodo.11201216) analysing the impact of five cycles of [Essential Open Source Software for Science](https://chanzuckerberg.com/eoss/) (EOSS) program. He further explored how research software impact is measured in the EOSS program, which supports the maintenance, growth, development, and community engagement for critical open source tools that are used globally in the life sciences. Stories and data from this unique grantee community represent one of the best available accounts on the impact of the open source foundations of science, and the urgent need to continue and expand support for them. @@ -49,11 +36,18 @@ The final day of the workshop focused on co-design and collaboration. After expl Are you a funder who is interested in learning more about research software and how to explicitly support research software as part of your funding program? * Join the Funders Forum by [contacting ReSA](mailto:info@researchsoft.org) (or encourage your funders to join\!) -* [Subscribe](https://www.researchsoft.org/news/) to our monthly newsletter for [ADORE.software](https://adore.software/) updates +* [Subscribe](/news/) to our monthly newsletter for [ADORE.software](https://adore.software/) updates * Show your support for ADORE.software by [signing the Declaration](https://adore.software/get-involved/) -* Become a ReSA [Organisational Member](https://www.researchsoft.org/membership/) to demonstrate your commitment to international collaboration and innovation for research; and connect with other decision makers and key influencers -* Check out our research software funding opportunities [database](https://www.researchsoft.org/funding-opportunities/) or [add to it](https://forms.gle/r4Jw4swUd1SXigZc9) -* [Join](https://www.researchsoft.org/taskforces/) or [support](https://www.researchsoft.org/tf-support/) a ReSA task force +* Become a ReSA [Organisational Member](/about/membership/) to demonstrate your commitment to international collaboration and innovation for research; and connect with other decision makers and key influencers +* Check out our research software funding opportunities [database](/resource/funding-opportunities/) or [add to it](https://forms.gle/r4Jw4swUd1SXigZc9) +* [Join](/taskforces/) or [support](/taskforces/tf-support/) a ReSA task force * Follow us on [LinkedIn](https://www.linkedin.com/company/research-software-alliance/), [Slack](https://researchsoft.slack.com/join/shared_invite/zt-1flmrglww-SoWjAK_5TJyqLU_~Jx697w#/shared-invite/email), and [Mastodon](https://fosstodon.org/@researchsoft) -We look forward to welcoming you\! +We look forward to welcoming you\! + +### Important links + * [Blog post DOI: https://doi.org/10.59350/j0jjs-0xn06](https://doi.org/10.59350/j0jjs-0xn06) + * [ReSA newsletter](/news/) + * [Sign up for the ReSA mailing list](https://dashboard.mailerlite.com/forms/778129/110635094443558050/share) + * [ReSA resources](/resource/resa-resources/) + * [Contact us](/about/contact) diff --git a/content/blog/2025-04/index.md b/content/blog/2025-04/index.md index 03f9b9d7..6fd3fff9 100644 --- a/content/blog/2025-04/index.md +++ b/content/blog/2025-04/index.md @@ -1,42 +1,23 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] +--- +title: "Research Software Alliance 2024 Community Report" +subtitle: "" +date: 2025-04-23 +authors: + - "" -title = "Research Software Alliance 2024 Community Report" -#subtitle = "" -title_align = "left" +categories: + - Blog -disabled = false -display_date = false -date = "2025-04-23" -authors = ["Kim Hartley & Michelle Barker"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = false # Default is false - content = """ - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [ReSA resources](/resa-resources) - * [Contact us](/contact) - """ - -+++ - -![My Image](04-2025-blog.jpg) +summary: "Read more..." +draft: false +--- April 2025 - ReSA has released its [2024 Community Report](https://doi.org/10.5281/zenodo.15264852), highlighting another impactful year of global collaboration to advance research software and support the people behind it. This year’s highlights include the Research Software Funders Forum’s involvement in the Global Research Council’s annual meeting and the successful hosting of its third international workshop in Sweden. Additional milestones include updates to the Amsterdam Declaration on Funding Research Software Sustainability (ADORE.software), progress toward convening the first international research software conference, the launch of the Research Software Infrastructure (RSI) Forum, and ReSA’s new role as secretariat of the International Council of RSE Associations. With new task forces focused on making research software FAIR and continued leadership in AI and open science, ReSA continues to catalyse change across the global research ecosystem. -Citation: Hartley, K., & Barker, M. (2025). Research Software Alliance 2024 Community Report (1.0). Zenodo. https://doi.org/10.5281/zenodo.15264853 +![My Image](04-2025-blog.jpg) +Citation: Hartley, K., & Barker, M. (2025). Research Software Alliance 2024 Community Report (1.0). Zenodo. https://doi.org/10.5281/zenodo.15264853 _Image credit: vectorjuice on_ [_Freepik_](https://www.freepik.com/free-vector/software-development-team-abstract-concept-illustration_12291216.htm#fromView=search&page=1&position=31&uuid=f3d61d4a-b82f-4507-b58a-cd6aaaa78c20&query=%40vectorjuice+computers+and+software) - - - - diff --git a/content/blog/2025-05/index.md b/content/blog/2025-05/index.md index 50f27364..0735bb1e 100644 --- a/content/blog/2025-05/index.md +++ b/content/blog/2025-05/index.md @@ -1,38 +1,25 @@ -+++ -fragment = "content" -weight = 100 -categories = ["Blog"] - -title = "Strengthening global collaboration: ReSA welcomes the Research Data Alliance as an Organisational Member" -#subtitle = "" -title_align = "left" - -disabled = false -display_date = false -date = "2025-05-30" -authors = ["Kim Hartley & Michelle Barker"] - -[sidebar] - title = "Important Links" - align = "right" - sticky = false # Default is false - content = """ - * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) - * [ReSA newsletters](/news) - * [RDA newsletters](https://www.rd-alliance.org/news-stories/newsletters/) - * [Contact us](/contact) - """ +--- +title: "Strengthening global collaboration: ReSA welcomes the Research Data Alliance as an Organisational Member" +subtitle: "" +date: '2025-05-30' +authors: + - "" -+++ +categories: + - Blog -![My Image](05-2025-blog.jpg) +summary: "Read more..." +draft: false +--- By Kim Hartley & Michelle Barker May 2025 -The [Research Software Alliance (ReSA)](https://www.researchsoft.org/) is delighted to welcome the [Research Data Alliance (RDA)](https://www.rd-alliance.org/) as our latest [Organisational Member](https://www.researchsoft.org/membership/), further deepening the longstanding, collaborative relationship between our two organisations. Over the years, ReSA and RDA have built a strong foundation of joint initiatives that advance the global research ecosystem. +The [Research Software Alliance (ReSA)](https://www.researchsoft.org/) is delighted to welcome the [Research Data Alliance (RDA)](https://www.rd-alliance.org/) as our latest [Organisational Member](/about/membership/), further deepening the longstanding, collaborative relationship between our two organisations. Over the years, ReSA and RDA have built a strong foundation of joint initiatives that advance the global research ecosystem. + +![My Image](05-2025-blog.jpg) Founded in 2013, the RDA is a community-driven initiative with a vision that researchers and innovators can openly share and re-use data across technologies, disciplines, and borders to tackle society’s grand challenges. Its mission is to build the social and technical bridges necessary to achieve this vision, through the development, adoption, and use of infrastructure that reduces barriers to data sharing and exchange. The RDA’s global community brings together scientists, researchers, and technical experts through focused Working Groups (WG), Interest Groups (IG), and Communities of Practice (CoP). Membership is free and open to all. @@ -40,9 +27,9 @@ ReSA’s mission is to advance the research software ecosystem by collaborating **Advancing research software together** -Together, ReSA and RDA have co-led impactful initiatives that strengthen the global research software ecosystem. These include the [_Policies in Research Organisations for Research Software (PRO4RS) WG_](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/activity/) and the [_FAIR for Research Software (FAIR4RS) WG_](https://www.rd-alliance.org/groups/fair-research-software-fair4rs-wg/activity/) (in collaboration with FORCE11). A major milestone was the endorsement of the [FAIR4RS Principles](https://doi.org/10.15497/RDA00068) as an official RDA recommendation in 2022. This output has seen significant engagement, with over 24,000 views and 11,000 downloads on Zenodo. The FAIR4RS Principles were formally introduced in a _Scientific Data_ [article](https://www.nature.com/articles/s41597-022-01710-x), which has over 180 citations. This work has catalysed further efforts, including the formation of ReSA-led [task forces](https://www.researchsoft.org/taskforces/) and [adoption support](https://doi.org/10.5281/zenodo.6258366) activities (and this two-year [update](https://doi.org/10.5281/zenodo.10816031)), all contributing to the ongoing implementation of FAIR4RS principles. +Together, ReSA and RDA have co-led impactful initiatives that strengthen the global research software ecosystem. These include the [_Policies in Research Organisations for Research Software (PRO4RS) WG_](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/activity/) and the [_FAIR for Research Software (FAIR4RS) WG_](https://www.rd-alliance.org/groups/fair-research-software-fair4rs-wg/activity/) (in collaboration with FORCE11). A major milestone was the endorsement of the [FAIR4RS Principles](https://doi.org/10.15497/RDA00068) as an official RDA recommendation in 2022. This output has seen significant engagement, with over 24,000 views and 11,000 downloads on Zenodo. The FAIR4RS Principles were formally introduced in a _Scientific Data_ [article](https://www.nature.com/articles/s41597-022-01710-x), which has over 180 citations. This work has catalysed further efforts, including the formation of ReSA-led [task forces](/taskforces/) and [adoption support](https://doi.org/10.5281/zenodo.6258366) activities (and this two-year [update](https://doi.org/10.5281/zenodo.10816031)), all contributing to the ongoing implementation of FAIR4RS principles. -In 2023, ReSA co-hosted a successful joint hybrid meeting in Sweden that brought together the [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/) and the [RDA Funders Forum](https://www.rd-alliance.org/funders-forum/). This aligned Funders Forum emerged from a recognition of shared interests and overlap in both focus and participation between the two groups. The discussion aimed to strengthen the integration of research data and research software concerns, foster cross-fertilisation of ideas among funders, and promote collaborative efforts that enhance research impact. Additionally, ReSA and RDA are actively [collaborating with LA Referencia](https://preview.mailerlite.io/emails/webview/778129/147396779058399059) to support open science and raise awareness of research software and research data in the Latin American and Caribbean region. +In 2023, ReSA co-hosted a successful joint hybrid meeting in Sweden that brought together the [Research Software Funders Forum](/forums/funders-forum/) and the [RDA Funders Forum](https://www.rd-alliance.org/funders-forum/). This aligned Funders Forum emerged from a recognition of shared interests and overlap in both focus and participation between the two groups. The discussion aimed to strengthen the integration of research data and research software concerns, foster cross-fertilisation of ideas among funders, and promote collaborative efforts that enhance research impact. Additionally, ReSA and RDA are actively [collaborating with LA Referencia](https://preview.mailerlite.io/emails/webview/778129/147396779058399059) to support open science and raise awareness of research software and research data in the Latin American and Caribbean region. **RDA’s research software-focused activities** @@ -74,3 +61,9 @@ Together, we can build a more sustainable, open, and collaborative research ecos _Image by pch.vector on_ [_Freepik_](https://www.freepik.com/free-vector/tiny-business-persons-working-jigsaw-puzzle-together-metaphor-cooperation-partnership-collaboration-team-people-flat-vector-illustration-communication-teamwork-concept_28480855.htm#fromView=search&page=1&position=36&uuid=0d3b4aa4-54e9-4e57-a175-934bf4a75975&query=organizational+collaboration) + +### Important links + * [Sign up for the ReSA mailing list](https://landing.mailerlite.com/webforms/landing/i5e1h2) + * [ReSA newsletters](/news) + * [RDA newsletters](https://www.rd-alliance.org/news-stories/newsletters/) + * [Contact us](/contact) diff --git a/content/blog/_global/index.md b/content/blog/_global/index.md deleted file mode 100644 index cbb7365a..00000000 --- a/content/blog/_global/index.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -headless = true -+++ diff --git a/content/blog/_global/list.md b/content/blog/_global/list.md deleted file mode 100644 index 728e458a..00000000 --- a/content/blog/_global/list.md +++ /dev/null @@ -1,15 +0,0 @@ -+++ -fragment = "list" # declare list fragment -weight = 100 -section = "/blog" # section to pull the list of pages # Default value is current section -images = true -tiled = true -display_date = true # Default is false -summary = true -background = "dark" -title = "Latest Posts" -count = 50 # Default value is 10 -collapsible = true # Default value is false -subsections = true # Default to true. Shows subsection branch pages -subsection_leaves = true # Default to false. Shows subsection leaf pages -+++ diff --git a/content/blog/_index.md b/content/blog/_index.md index 09157095..c7e934ae 100644 --- a/content/blog/_index.md +++ b/content/blog/_index.md @@ -1,6 +1,24 @@ -+++ -title = "Research Software Alliance - Blog" -description = "Blog" -+++ +--- +title: Latest Posts +cms_exclude: true -# our blog's skeleton index/main page used for setting the title and description +# View. +# 1 = List +# 2 = Compact +# 3 = Card +# 4 = Citation +view: 3 + +content: + folders: + - post + count: 100 # Show all posts (set to a number like 5 or 10 for limit) + offset: 0 + sort_by: date + sort_order: desc + +# Optional header image (relative to `static/media/` folder). +header: + caption: '' + image: '' +--- \ No newline at end of file diff --git a/content/code-of-conduct/10-code-header/index.md b/content/code-of-conduct/10-code-header/index.md deleted file mode 100644 index e88cad08..00000000 --- a/content/code-of-conduct/10-code-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2020-11-16" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Code of Conduct" - -[header] - image = "main-hero.png" - text = "main character" - -+++ diff --git a/content/code-of-conduct/content.md b/content/code-of-conduct/content.md deleted file mode 100644 index ad35dc58..00000000 --- a/content/code-of-conduct/content.md +++ /dev/null @@ -1,90 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2020-11-16" -weight = 110 -background = "white" - -title = "ReSA Code of Conduct" -#subtitle = "" -+++ - - -**Contents** - -1. Introduction and Scope -2. Diversity Statement -3. Standards for Behavior -4. Unacceptable Behavior -5. Reporting Guidelines -6. How to Submit a Report -7. License - -**1. Introduction and Scope** - -This code of conduct should be honored by everyone who participates in the ReSA community. It should be honored in any ReSA related activities, by anyone claiming affiliation with ReSA, and especially when someone is representing ReSA in any role (including as an event volunteer or speaker). -This code of conduct applies to all spaces managed by ReSA, including all public and private mailing lists, issue trackers, wikis, forums, code repositories, and any other communication channel used by our community. The code of conduct equally applies at ReSA events, regardless of virtual/physical setting, and governs standards of behavior for attendees, speakers, volunteers, booth staff, and event sponsors. - -This code is not exhaustive or complete. It serves to distill our understanding of a collaborative, inclusive community culture. Please try to follow this code in spirit as much as in letter, to create a friendly and productive environment that enriches the ReSA community. -We require all ReSA sponsored and affiliated projects, activities, and events, to adopt a code of conduct that encourages a productive, respectful environment for all contributors and community members. - -If a person is found to violate the ReSA Code of Conduct, the ReSA Steering Committee may take any action they deem appropriate to resolve the situation, including warning the person in question, removing them from a specific activity, banning them from further participation in activities (in person or online), or expulsion from ReSA. - -**2. Diversity Statement** - -ReSA welcomes and encourages participation in our community by people of all backgrounds and identities. We are committed to promoting and sustaining a culture that values mutual respect, tolerance, and learning. We work together as a community to help each other live out these values. - -We have created this diversity statement because we believe that a diverse community is stronger, more vibrant, and produces better software and better research. A diverse community where people treat each other with respect has more potential contributors, more sources for ideas, and fewer shared assumptions that might hinder the achievement of our goals. - -Although we have phrased the formal diversity statement generically to make it all-inclusive, we recognize that there are specific identities that are impacted by systemic discrimination and marginalization. We welcome all people to participate in ReSA regardless of their identity or background. - -**3. Standards for Behavior** - -All communication should be appropriate for a professional audience including people of many different backgrounds. Please always be kind and courteous. There is never a need to be mean, rude, or disrespectful. Thank you for helping make this a welcoming, friendly community for all. - -We, the members of ReSA, strive to: - -* Be empathetic, respectful, welcoming, friendly, and patient. We remember that every ReSA project, and program is crafted by human beings who deserve to be treated with kindness and empathy. We work together to resolve conflict and assume good intentions. We may all experience some frustration from time to time, but we do not allow frustration to turn into a personal attack. A community where people feel uncomfortable or threatened is not a productive one. -* Be collaborative. Our work depends on the participation of many people, and in turn others depend on our work. Effective and friendly collaboration enables everyone to better achieve their goals. -* Be careful in the words that we choose. We are careful and respectful in our communication, and we take responsibility for our own speech. Be kind to others. Do not insult or put down other members of the community. - -**4. Unacceptable Behavior** - -We, the members of ReSA, are committed to making participation in this community a harassment-free experience. - -We will not accept harassment or other exclusionary behaviors, such as: - -* The use of sexualized language or imagery -* Excessive profanity (please avoid curse words; people differ greatly in their sensitivity to swearing) -* Posting sexually explicit or violent material -* Violent or intimidating threats or language directed against another person or group -* Inappropriate physical contact and/or unwelcome sexual attention or sexual comments -* Sexist, racist, or otherwise discriminatory jokes and language -* Trolling or insulting and derogatory comments -* Written or verbal comments which have the effect of excluding people on the basis of membership in a specific group, including level of experience, gender, gender identity and expression, sexual orientation, disability, neurotype, personal appearance, body size, race, ethnicity, age, religion, or nationality -* Public or private harassment -* Continuing to initiate interaction (such as photography, recording, messaging, or conversation) with someone after being asked to stop -* Sustained disruption of talks, events, or communications, such as heckling of a speaker -* Publishing (or threatening to post) other people’s personally identifying information (β€œdoxing”), such as physical or electronic addresses, without explicit permission -* Other unethical or unprofessional conduct -* Advocating for, or encouraging, any of the above behaviors - -**5. Reporting Guidelines** - -If you believe someone is violating the code of conduct, please report this in a timely manner (see How to Submit a Report in the next section). Code of conduct violations reduce the value of the community for everyone. The ReSA Steering Committee takes reports of misconduct very seriously and are committed to preserving and maintaining the welcoming nature of our community. - -All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. All reports will be kept confidential, with the exception of cases where the Steering Committee determines the report should be shared with law enforcement. In those cases, the report will be shared with the proper legal authorities. - -In some cases the ReSA Steering Committee may determine that a public statement will need to be made. If that is the case, the identities of all involved parties and reporters will normally remain confidential unless those individuals instruct us otherwise. The ReSA Steering Committee may decide to identify details of code of conduct violators in order to safeguard the community as a whole. - -Take care of each other. Alert the [ReSA Steering Committee](mailto:info@researchsoft.org) if you notice a dangerous situation, someone in distress, or violations of this code of conduct, even if they seem inconsequential. - -**6. How to Submit a Report** - -If you feel your safety is in jeopardy or the situation is an emergency, contact local law enforcement before making a report to ReSA. ReSA is committed to promptly addressing any reported issues. If you have experienced or witnessed behavior that violates the ReSA Code of Conduct, please send an email to [conduct@researchsoft.org](mailto:conduct@researchsoft.org). These emails are sent to two staff from ReSA’s fiscal sponsor, [Code for Science and Society](https://codeforscience.org/): Danielle Robinson, President & Co-Executive Director; and Jessica Hardwicke, Sponsored Projects Services Manager; and the ReSA Director, Michelle Barker. An alternate contact is [Daniel S. Katz](mailto:d.katz@ieee.org), Chair of the ReSA Steering Committee. Please provide as much information as you can about the incident, such as where and when it occurred. - -**7. License** - -This code of conduct has been adapted from the [US-RSE Association Code of Conduct](https://us-rse.org/code-of-conduct/), which builds on the [NumFocus Code of Conduct](https://numfocus.org/code-of-conduct), which was itself adapted from numerous sources, including the [Geek Feminism wiki](http://geekfeminism.wikia.com/wiki/Conference_anti-harassment/Policy), created by the Ada Initiative and other volunteers, which is under a [Creative Commons Zero license](https://creativecommons.org/share-your-work/public-domain/cc0/), the [Contributor Covenant version 1.2.0](http://contributor-covenant.org/version/1/2/0/), the [Bokeh Code of Conduct](https://github.com/bokeh/bokeh/blob/master/CODE_OF_CONDUCT.md), the [SciPy Code of Conduct](https://github.com/jupyter/governance/blob/master/conduct/enforcement.md), the [Carpentries Code of Conduct](https://docs.carpentries.org/topic_folders/policies/code-of-conduct.html#enforcement-manual), and the [NeurIPS Code of Conduct](https://nips.cc/public/CodeOfConduct). - -The ReSA Code of Conduct is made available under the [Creative Commons Attribution 4.0 International license](https://creativecommons.org/licenses/by/4.0/) (CC BY 4.0). diff --git a/content/code-of-conduct/index.md b/content/code-of-conduct/index.md deleted file mode 100644 index 8002f0d6..00000000 --- a/content/code-of-conduct/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Code of Conduct" -date = "2020-11-16" -+++ \ No newline at end of file diff --git a/content/community-calls/10-community-calls-header/index.md b/content/community-calls/10-community-calls-header/index.md deleted file mode 100644 index 5fb5833a..00000000 --- a/content/community-calls/10-community-calls-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2025-06-09" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "ReSA Community Calls" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/community-calls/20-content.md b/content/community-calls/20-content.md deleted file mode 100644 index 79ec18f3..00000000 --- a/content/community-calls/20-content.md +++ /dev/null @@ -1,57 +0,0 @@ -+++ -fragment = "content" -weight = 100 -disabled = false -categories = ["Ongoing"] - -display_date = false -publishdate = "2025-06-09" -date = "2023-06-09" - - -summary = """ -ReSA's mission is to bring research software communities together to collaborate on the advancement of the research software ecosystem. - -""" - - -[sidebar] - title = "Useful links" - align = "right" - sticky = true # Default is false - content = """ - * [Contact ReSA](../../contact/) - * [ReSA’s Code of Conduct](../../code-of-conduct/) - """ - -[asset] - image = "sharon-mccutcheon-colourful-unsplash.jpg" - text = "Close up of tiny rainbow colored sugar candies." - -+++ - -ReSA Community Calls are periodic online gatherings designed to connect the global research software community. Open to all, these calls provide a collaborative space for connection, interactive discussion, and shared problem-solving. - -Organised by the ReSA, the Community Calls bring together individuals and organisations from across the research software landscape to align efforts and collectively work toward both local and international goals. - -Each call features a brief presentation followed by open discussion, encouraging attendees to engage with key topics and consider actionable next steps. To maximise global participation, meetings are held at alternating times and follow ReSA’s [Code of Conduct](https://www.researchsoft.org/code-of-conduct/) to ensure a welcoming and inclusive environment for all attendees. - -Join the conversation and help shape the future of research softwareβ€”everyone is welcome. - - -### Upcoming calls: TBD - - - -### Past calls: - -* 14 April 2025, 09:00 UTC; 15 April, 03:00 UTC, 20:00 UTC; 16 April, 09:00 UTC, 20:00 UTC, see [notes](https://docs.google.com/document/d/1FylVynkTB0rrajduNtpY32npE3g_veQM5_ATx65Wq3E/edit?tab=t.0#heading=h.p5lrqqrzlafa) and [slides](https://docs.google.com/presentation/d/1DWL-0-pAgNWwsNxjb3U3I7_ya5__-0ul/edit#slide=id.g33a58d7ea5c_0_8). Topic: ReSA Draft Strategic Plan 2025-28 feedback sessions. -* 15 November 2023, 20:00-21:00 UTC, see [notes](https://docs.google.com/document/d/1CRYoycC-uwmRfC10nlLTHMfuwDai-RwEqjWQedfrG3U/edit), [video](https://www.youtube.com/watch?v=4SWUnLOTNsQ), and [slides](https://docs.google.com/presentation/d/1pvgggk_3MNGWrPTKKIINWy5XQyuoNuHB-07RZed-AkU/edit#slide=id.g241153165a8_0_0). Topic: Update on Research Software Alliance (ReSA) strategy, engagement and operations, including the proposed ReSA-RDA Working Group on [Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/policies-research-organisations-research-software-pro4rs), our Organisational Membership program, and the work of our [Community Managers](https://www.researchsoft.org/people/) in Asia and Africa. -* 18 October 2023, 10:00-11:00 UTC, see [notes](https://docs.google.com/document/d/1rUBoqc31ydFgbGNN0vDplIOrfrMJTPpFQgPoEpzWcRY/edit), [video](https://www.youtube.com/watch?v=iWId3GTeTnk), and [slides](https://docs.google.com/presentation/d/1BA1brC1xLrpXFl_CIsYkhovHtBK4qmFUP98sgQKm17c/edit#slide=id.g241153165a8_0_0). Topic: Debrief on the second [International Research Software Funders Workshop](https://adore.software/international-research-software-funders-workshop/) and release of the [Amsterdam Declaration for Funding Research Software Sustainability](https://adore.software/declaration/). Do you adore software? Let your funders know so they can get involved with the Declaration. -* 29 November 2022, 15:00-16.00 UTC, see [agenda](https://docs.google.com/document/d/1vpSlEcrkmmuBV6HFOHaoihIzT5HGLwoNRNwez5GFqYw/edit) and [blog](https://www.future-of-research-software.org/) on [International Funders Workshop: The Future of Research Software](https://www.future-of-research-software.org/ ). -* 12 October 2022, 03:00–04:00 UTC, see [agenda](https://docs.google.com/document/d/10QO3F_1_rHHHrDHwXQchPaohmbJmq-uG6cmxLV4xe-U/edit), [video](https://www.youtube.com/watch?v=pxmYroTxz-A) and [slides](https://docs.google.com/presentation/d/1TqG9uof7FGtKFK6yoDB56O8P21jnFjLedrvTeT_WWCk/present?slide=id.gc6f75fceb_0_0) from the talk by Paula Andrea Martinez, ReSA and Australian Research Data Commons (ARDC), on [The Research Software Community in the Global South](https://doi.org/10.5281/zenodo.7179892). This forum was jointly convened with [RSE Australian/New Zealand](https://rse-aunz.org/) and the [Visible Research Software Interest Group](https://github.com/au-research/Visible-Research-Software). -* 14 September 2022, 23:00-00:00 UTC, see [agenda](https://docs.google.com/document/d/18679k_7PFSQGn2amhHiy1Py4XdK4jhQXko613CBWarA/edit) and [slides](https://docs.google.com/presentation/d/1yVic0jUJjuZKGLHuWUgmDqMteVgcBg641Jm3heAPC-A/edit#slide=id.gf0a02d822b_2_48) from the talk by Tom Honeyman, ARDC, about aligning publisher policies for sharing code. -* 5 August 2022, 17:00–18:00 UTC, see [agenda](https://drive.google.com/drive/folders/1MN6ahMk-gts6iYuXbct8TbgI-oeJ_Pj_) and [slides](https://drive.google.com/drive/folders/1MN6ahMk-gts6iYuXbct8TbgI-oeJ_Pj_) from the talk by Qian Zhang, Digital Research Alliance of Canada, on the Research Software Roadmap. -* 19 July 2022 11:00-12:00 UTC, [agenda](https://docs.google.com/document/d/1tRaqpolrr_LOxyHjvBNUvHgze16IkQ9uUD4HuHU1gAM/edit) and [slides](https://docs.google.com/presentation/d/1zfFHExj-xc8pw3KeaIAPEnfVqQ_Zodrc0Vu9Tu5QCjk/edit#slide=id.g11d79f76048_0_20) from the talk by Michelle Barker, ReSA, on the outcomes of [Vive la diffΓ©rence - research software engineers](https://zenodo.org/record/6816193#.YyKMwexBy7N), a hybrid workshop that focused on broadening the research software community. - -Photo by Sharon McCutcheon on Unsplash. diff --git a/content/community-calls/index.md b/content/community-calls/index.md deleted file mode 100644 index 5d176c49..00000000 --- a/content/community-calls/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "ReSA Community Calls" -date = "2025-06-09" -+++ diff --git a/content/community-leadership-forum/10-header/index.md b/content/community-leadership-forum/10-header/index.md deleted file mode 100644 index 17eb8d08..00000000 --- a/content/community-leadership-forum/10-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2025-06-04" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Research Software Community Leadership Forum (CLF)" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/community-leadership-forum/content.md b/content/community-leadership-forum/content.md deleted file mode 100644 index f902596d..00000000 --- a/content/community-leadership-forum/content.md +++ /dev/null @@ -1,50 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2025-06-4" -weight = 20 -background = "white" -+++ - -The **Research Software Community Leadership Forum (CLF)** supports ReSA’s [vision](https://www.researchsoft.org/) by serving as a forum for community leaders to collaborate, share insights, and advance the research software ecosystem. It draws on the diverse expertise and perspectives of our stakeholders to ensure that decision-making is participatory and inclusive. - -The CLF provides a formal mechanism for members to consider how to collectively address common challenges to achieve the significant cultural change needed across the research sector globally. It aims to: -- Identify a shared vision for the research software community, and could create longer-term outcomes such as development of a decadal plan for research software (see CODATA’s for research data) -- Identify community priorities and ultimately assist in coordination to address these -- Represent the research software community in broader international discussions of relevance to open science and/or open source scientific software, such as OECD, UNESCO, COARA, etc. - -Membership is comprised of representatives from two stakeholder groups: - -1. Each of ReSA’s stakeholder forums will elect two representatives to the CLF. These elected members will bring forward the insights, concerns, and contributions of their respective communities to inform the wider leadership dialogue. The current ReSA stakeholder forums are: -- [Research Software Infrastructure (RSI) Forum](https://www.researchsoft.org/rsi-forum/) - for infrastructure organisations that serve research software and that seek to help identify and resolve gaps and points of friction in using infrastructures in various research software use cases. -- [Research Software Policy (RSP) Forum](https://www.researchsoft.org/rsp-forum/) - for policymakers that focus on research, open science, and open source software, and influence policy at the national, regional, and/or international level. -- [Metascience and Research Software (MaRS) Forum](https://www.researchsoft.org/mars-forum/) - for stakeholders that conduct research to understand implications of research software on the research ecosystem, particularly on the research process. -- [Publishing Research Software (PubSoft) Forum](https://www.researchsoft.org/pubsoft-forum/) - for publishers that share academic research and scholarship, including both traditional publishers that publish text and/or software papers. -- [Skills and Training for Research Software (STaRS) Forum](https://www.researchsoft.org/stars-forum/) - for skills and training organisations/initiatives that focus on developing curricula and learning pathways to support the development of research software. -- [International Council of RSE Associations](https://researchsoftware.org/council.html) - -2. An open nomination process to ensure representation of stakeholders not already engaged through ReSA forums. The nomination process for missing voices is through self-nomination. The key criteria for nominees is their ability to represent a missing stakeholder group, with evidence of engagement with and representation of that group for this nomination. ReSA will also conduct targeted outreach to identify and encourage participation from missing voices, such as research support infrastructures and university consortia. - -**Time commitment** - -CLF representatives serve three-year terms, with an annual time commitment of approximately 5–10 hours. This includes attending 1–2 online meetings each year, as well as participating in asynchronous discussions. Members are expected to act as liaisons between the CLF and their stakeholder groups, bringing forward relevant perspectives, priorities, and insights to support inclusive leadership in the research software community. - -**How to apply** - -There are two paths to join: - -**1. Via stakeholder forums** - -Eligible forum participants will receive an invitation from ReSA to nominate themselves, followed by an internal voting process. - -**2. Via open nomination - [apply here](https://forms.gle/wHnn4vDQiPatHY6M6)** - -Individuals from stakeholder groups not yet represented can self-nominate by completing this [Google form](https://forms.gle/wHnn4vDQiPatHY6M6). - -The ReSA Steering Committee will review all submissions, and the selected representatives will be announced in October. - - -**Deadline for submissions: 5 September 2025** - -For further information, please refer to the [CLF Nomination Process](https://docs.google.com/document/d/1jXKFrS1s0_dJiLv0uryaTDzUa453w98jnH0DuWWf3dU/edit?usp=drive_link) or the [Terms of Reference](https://docs.google.com/document/d/15uOY6fQbvE0dfEzZkADaDwMtIGqbXcS3PHVzCvSStbE/edit?usp=drive_link) or email info@researchsoft.org. - diff --git a/content/community-leadership-forum/index.md b/content/community-leadership-forum/index.md deleted file mode 100644 index 6f3b6f32..00000000 --- a/content/community-leadership-forum/index.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -title = "Research Software Community Leadership Forum" -date = "2025-06-04" -+++ - - - diff --git a/content/contact/10-contact-header/index.md b/content/contact/10-contact-header/index.md deleted file mode 100644 index 31d343e2..00000000 --- a/content/contact/10-contact-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2020-07-24" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Contact" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/contact/contact.md b/content/contact/contact.md deleted file mode 100644 index 7e7421b9..00000000 --- a/content/contact/contact.md +++ /dev/null @@ -1,34 +0,0 @@ -+++ - -fragment = "contact" -#disabled = true -date = "2020-07-24" -weight = 100 -background = "white" -form_name = "Contact ReSA" - -#title_align = "left" # Default is center, can be left, right or center - -# PostURL can be used with backends such as mailout from caddy -email = "info@researchsoft.org" -button_text = "Send" # defaults to theme default -netlify = true - -[message] - success = "Thank you for contacting us." # defaults to theme default - error = "Message could not be send. Please contact us at info@researchsoft.org instead." # defaults to theme default - -# Only defined fields are shown in contact form -[fields.name] - text = "Your Name *" - error = "Please enter your name" # defaults to theme default - -[fields.email] - text = "Your Email *" - error = "Please enter your email address" # defaults to theme default - -[fields.message] - text = "Your Message *" - error = "Please enter a message" # defaults to theme default - -+++ \ No newline at end of file diff --git a/content/contact/content.md b/content/contact/content.md deleted file mode 100644 index 01a7ae65..00000000 --- a/content/contact/content.md +++ /dev/null @@ -1,12 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2020-07-21" -weight = 110 -background = "white" - -title = "Community" -#subtitle = "" -+++ - -If you want to be part of our community join our current [task forces](https://www.researchsoft.org/taskforces/) and subscribe to our newsletter. diff --git a/content/contact/index.md b/content/contact/index.md deleted file mode 100644 index 8a39b67e..00000000 --- a/content/contact/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Contact" -date = "2020-07-21" -+++ \ No newline at end of file diff --git a/content/contact/subscribe.md b/content/contact/subscribe.md deleted file mode 100644 index ae2b635b..00000000 --- a/content/contact/subscribe.md +++ /dev/null @@ -1,12 +0,0 @@ -+++ -fragment = "buttons" -#disabled = false -#date = "2016-09-07" -weight = 115 -background = "white" - -[[buttons]] - text = "Subscribe to the ReSA newsletter" - url = "https://dashboard.mailerlite.com/forms/778129/110635094443558050/share" - color = "success" -+++ diff --git a/content/donate/10-donate-header/index.md b/content/donate/10-donate-header/index.md deleted file mode 100644 index eec6fc81..00000000 --- a/content/donate/10-donate-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2023-02-10" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Donate" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/donate/20-content.md b/content/donate/20-content.md deleted file mode 100644 index a08e07ac..00000000 --- a/content/donate/20-content.md +++ /dev/null @@ -1,43 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2023-02-10" -weight = 20 -background = "white" - -title = "" -+++ - -Your donation will help ReSA to serve the research software community in the -following ways: - -- Bring community members together through -[task forces](https://www.researchsoft.org/taskforces/) on specific issues -impacting the global research software ecosystem. -- Facilitate -[networking opportunities](https://www.researchsoft.org/funders-forum/) -for [stakeholders](https://www.researchsoft.org/stakeholders/) to exchange information and collaborate on an international level. -- Create a range of [outputs](https://www.researchsoft.org/resa-resources/) that -provide useful references to support recognition and valuing of research -software as a key component of research. -- Co-convene [events](https://www.researchsoft.org/events/) with international -collaborators. -- Share [best practices](https://www.researchsoft.org/guidelines/) for the -recognition of research software and the people who develop and maintain it. - -We welcome any amount you can offer – every donation makes a positive impact on -our community. - -You can select the frequency of donations to ReSA once, monthly, - or quarterly, using a card, PayPal or bank transfer through the following form. - -Donate - -For donations over $5,000, please email -<[info@researchsoft.org](mailto:info@researchsoft.org)> to arrange a wire transfer/ACH payment. - -ReSA is a fiscally sponsored project of -[Code for Science & Society](https://codeforscience.org/). An -[overview](https://docs.google.com/spreadsheets/d/1u00bPi5jIeI_iO5AfaBA97jxdLTgQW5rWwGkGI7RI0M/edit#gid=0) - of ReSA income and expenditures is available for review. Our grants are also - available on [Open Grants](https://www.ogrants.org/). diff --git a/content/donate/index.md b/content/donate/index.md deleted file mode 100644 index c89387ee..00000000 --- a/content/donate/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Donate" -date = "2023-02-10" -+++ diff --git a/content/events/2024-01/index.md b/content/events/2024-01/index.md deleted file mode 100644 index 207c5589..00000000 --- a/content/events/2024-01/index.md +++ /dev/null @@ -1,35 +0,0 @@ -+++ -fragment = "content" -weight = 100 -disabled = false -categories = ["Past","Event"] - -title = "2024 International Research Software Funders Workshop " -subtitle = "Towards a monitoring framework to benchmark the ADORE.software recommendations and improve the sustainability of research software" -title_align = "left" - -display_date = true -publishdate = "2024-01-23" -date = "2024-09-09" - -summary = """ -The SciLifeLab Data Centre and ReSA are hosting an international workshop in Uppsala, Sweden, from September 9-13, 2024. The workshop will focus on operationalizing the [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/) (ADORE.software) by developing a monitoring framework to benchmark how funders are currently supporting the sustainability of research software using the recommendations as a starting point. Additionally, the workshop will examine how such a monitoring framework can be leveraged by funders and the community. -""" - - -[sidebar] - title = "Useful links" - align = "right" - sticky = true # Default is false - content = """ - * [2023 Research Software Funders Workshop](https://adore.software/international-research-software-funders-workshop/) - * [2022 Research Software Funders Workshop](https://adore.software/2023/03/international-funders-workshop-the-future-of-research-software/) - * [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/) - * [Subscribe to ReSA newsletter](https://www.researchsoft.org/news/) - """ - -+++ -# Event Summary -The SciLifeLab Data Centre and the Research Software Alliance (ReSA) are hosting an international workshop in Uppsala September 9-13, 2024.The workshop will focus on operationalizing the Amsterdam Declaration on Funding Research Software Sustainability (ADORE.software) by developing a monitoring framework to benchmark how funders are currently supporting the sustainability of research software using the recommendations as a starting point. Additionally, the workshop will examine how such a monitoring framework can be leveraged by funders and the community. - -**[Read more details about the event](https://adore.software/2024-international-research-software-funders-workshop/)** diff --git a/content/events/2025-02/index.md b/content/events/2025-02/index.md deleted file mode 100644 index 5238b370..00000000 --- a/content/events/2025-02/index.md +++ /dev/null @@ -1,46 +0,0 @@ -+++ -fragment = "content" -weight = 100 -disabled = false -categories = ["Ongoing", "Event"] - -title = "Towards an international research software conference: Join our committees!" -subtitle = "" -title_align = "left" - -display_date = true -publishdate = "2025-02-11" -date = "2025-02-18" - -summary = """ -ReSA has established three committees to lead development of each of the three options identified within [*Towards an International Research Software Conference*](https://zenodo.org/records/14793104). If you're passionate about advancing the research software community, consider joining a committee/s by reaching out to [michelle@researchsoft.org](mailto:michelle@researchsoft.org). - -""" - - -[sidebar] - title = "Useful links" - align = "right" - sticky = true # Default is false - content = """ - * [ReSA’s Code of Conduct](../../code-of-conduct/) - * [Subscribe to ReSA newsletter](https://www.researchsoft.org/news/) - """ - -[asset] - image = "2024-09-24-image.jpeg" - text = "global connectivity - work on laptop" - - -+++ -Image credit: Viri GutiΓ©rrez, [Lummi](https://www.lummi.ai/photo/global-connectivity-work-on-laptop-hhipk) - -ReSA has established three committees to lead development of each of the three options identified within [*Towards an International Research Software Conference*](https://zenodo.org/records/14793104). If you're passionate about advancing the research software community, consider joining a committee/s by reaching out to [michelle@researchsoft.org](mailto:michelle@researchsoft.org) to find out the next meeting date/s. - -The three committees are: - -1) International hybrid annual conference** on research software: Committee’s Google [folder](https://drive.google.com/drive/u/0/folders/1qoDYOJLukuOP53iVEqB2RaY_saZdOPWM) - -2) Series of research software workshops** at existing events: Committee's Google [folder](https://drive.google.com/drive/u/0/folders/1YsBW2PjIcSGzaI4rGqtxs4Nez47fpjoG) - -3) Champions programs: Committee’s Google [folder](https://drive.google.com/drive/u/0/folders/1PGAP96f-Fj8Sw4gr_47soZffSTq5bJAp) diff --git a/content/events/_global/index.md b/content/events/_global/index.md deleted file mode 100644 index cbb7365a..00000000 --- a/content/events/_global/index.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -headless = true -+++ diff --git a/content/events/_global/list.md b/content/events/_global/list.md deleted file mode 100644 index f1b0c1f1..00000000 --- a/content/events/_global/list.md +++ /dev/null @@ -1,19 +0,0 @@ -+++ -date = "2022-01-18" -fragment = "list" # declare list fragment -weight = 120 -section = "/events" # section to pull the list of pages -images = true -tiled = true -display_date = false # Default is false -summary = true -sort = "PublishDate" #default: PublishDate -sort_order = "desc" -background = "light" -title = "Research Software Alliance - Events" -count = 3 # Show at the end of each post -collapsible = false # Default value is false -subsections = true # Default to true. Shows subsection branch pages -subsection_leaves = true # Default to false. Shows subsection leaf pages -read_more = true -+++ diff --git a/content/events/_index.md b/content/events/_index.md index 91ef8d45..65e84053 100644 --- a/content/events/_index.md +++ b/content/events/_index.md @@ -1,4 +1,6 @@ -+++ -title = "Research Software Alliance - Events" -description = "Events" -+++ +--- +title: +date: 2025-05-22 +type: landing + +--- \ No newline at end of file diff --git a/content/events/community-calls/_index.md b/content/events/community-calls/_index.md new file mode 100644 index 00000000..3cae4409 --- /dev/null +++ b/content/events/community-calls/_index.md @@ -0,0 +1,99 @@ +--- +title: ReSA Community Calls +date: 2025-06-09 +type: landing + +sections: + - block: markdown + content: + title: + text: | + ReSA Community Calls + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: center + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + - block: markdown + content: + title: + text: | + +
+
+
+ Ongoing +
+
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["1rem", "1rem"] + + + - block: markdown + content: + title: + text: | + +
+
+ + + ![Close up of tiny rainbow colored sugar candies.](sharon-mccutcheon-colourful-unsplash.jpg) + + + ReSA Community Calls are periodic online gatherings designed to connect the global research software community. Open to all, these calls provide a collaborative space for connection, interactive discussion, and shared problem-solving. + + Organised by the ReSA, the Community Calls bring together individuals and organisations from across the research software landscape to align efforts and collectively work toward both local and international goals. + + Each call features a brief presentation followed by open discussion, encouraging attendees to engage with key topics and consider actionable next steps. To maximise global participation, meetings are held at alternating times and follow ReSA’s [Code of Conduct](../../about/code-of-conduct/) to ensure a welcoming and inclusive environment for all attendees. + + Join the conversation and help shape the future of research softwareβ€”everyone is welcome. + + + ### Upcoming calls: TBD + + + + ### Past calls: + + * 14 April 2025, 09:00 UTC; 15 April, 03:00 UTC, 20:00 UTC; 16 April, 09:00 UTC, 20:00 UTC, see [notes](https://docs.google.com/document/d/1FylVynkTB0rrajduNtpY32npE3g_veQM5_ATx65Wq3E/edit?tab=t.0#heading=h.p5lrqqrzlafa) and [slides](https://docs.google.com/presentation/d/1DWL-0-pAgNWwsNxjb3U3I7_ya5__-0ul/edit#slide=id.g33a58d7ea5c_0_8). Topic: ReSA Draft Strategic Plan 2025-28 feedback sessions. + * 15 November 2023, 20:00-21:00 UTC, see [notes](https://docs.google.com/document/d/1CRYoycC-uwmRfC10nlLTHMfuwDai-RwEqjWQedfrG3U/edit), [video](https://www.youtube.com/watch?v=4SWUnLOTNsQ), and [slides](https://docs.google.com/presentation/d/1pvgggk_3MNGWrPTKKIINWy5XQyuoNuHB-07RZed-AkU/edit#slide=id.g241153165a8_0_0). Topic: Update on Research Software Alliance (ReSA) strategy, engagement and operations, including the proposed ReSA-RDA Working Group on [Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/policies-research-organisations-research-software-pro4rs), our Organisational Membership program, and the work of our [Community Managers](/about/our-team/) in Asia and Africa. + * 18 October 2023, 10:00-11:00 UTC, see [notes](https://docs.google.com/document/d/1rUBoqc31ydFgbGNN0vDplIOrfrMJTPpFQgPoEpzWcRY/edit), [video](https://www.youtube.com/watch?v=iWId3GTeTnk), and [slides](https://docs.google.com/presentation/d/1BA1brC1xLrpXFl_CIsYkhovHtBK4qmFUP98sgQKm17c/edit#slide=id.g241153165a8_0_0). Topic: Debrief on the second [International Research Software Funders Workshop](https://adore.software/international-research-software-funders-workshop/) and release of the [Amsterdam Declaration for Funding Research Software Sustainability](https://adore.software/declaration/). Do you adore software? Let your funders know so they can get involved with the Declaration. + * 29 November 2022, 15:00-16.00 UTC, see [agenda](https://docs.google.com/document/d/1vpSlEcrkmmuBV6HFOHaoihIzT5HGLwoNRNwez5GFqYw/edit) and [blog](https://www.future-of-research-software.org/) on [International Funders Workshop: The Future of Research Software](https://www.future-of-research-software.org/ ). + * 12 October 2022, 03:00–04:00 UTC, see [agenda](https://docs.google.com/document/d/10QO3F_1_rHHHrDHwXQchPaohmbJmq-uG6cmxLV4xe-U/edit), [video](https://www.youtube.com/watch?v=pxmYroTxz-A) and [slides](https://docs.google.com/presentation/d/1TqG9uof7FGtKFK6yoDB56O8P21jnFjLedrvTeT_WWCk/present?slide=id.gc6f75fceb_0_0) from the talk by Paula Andrea Martinez, ReSA and Australian Research Data Commons (ARDC), on [The Research Software Community in the Global South](https://doi.org/10.5281/zenodo.7179892). This forum was jointly convened with [RSE Australian/New Zealand](https://rse-aunz.org/) and the [Visible Research Software Interest Group](https://github.com/au-research/Visible-Research-Software). + * 14 September 2022, 23:00-00:00 UTC, see [agenda](https://docs.google.com/document/d/18679k_7PFSQGn2amhHiy1Py4XdK4jhQXko613CBWarA/edit) and [slides](https://docs.google.com/presentation/d/1yVic0jUJjuZKGLHuWUgmDqMteVgcBg641Jm3heAPC-A/edit#slide=id.gf0a02d822b_2_48) from the talk by Tom Honeyman, ARDC, about aligning publisher policies for sharing code. + * 5 August 2022, 17:00–18:00 UTC, see [agenda](https://drive.google.com/drive/folders/1MN6ahMk-gts6iYuXbct8TbgI-oeJ_Pj_) and [slides](https://drive.google.com/drive/folders/1MN6ahMk-gts6iYuXbct8TbgI-oeJ_Pj_) from the talk by Qian Zhang, Digital Research Alliance of Canada, on the Research Software Roadmap. + * 19 July 2022 11:00-12:00 UTC, [agenda](https://docs.google.com/document/d/1tRaqpolrr_LOxyHjvBNUvHgze16IkQ9uUD4HuHU1gAM/edit) and [slides](https://docs.google.com/presentation/d/1zfFHExj-xc8pw3KeaIAPEnfVqQ_Zodrc0Vu9Tu5QCjk/edit#slide=id.g11d79f76048_0_20) from the talk by Michelle Barker, ReSA, on the outcomes of [Vive la diffΓ©rence - research software engineers](https://zenodo.org/record/6816193#.YyKMwexBy7N), a hybrid workshop that focused on broadening the research software community. + + Photo by Sharon McCutcheon on Unsplash. + + ### Useful links + * [Contact ReSA](/about/contact) + * [ReSA’s Code of Conduct](/about/code-of-conduct) + +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- \ No newline at end of file diff --git a/static/images/sharon-mccutcheon-colourful-unsplash.jpg b/content/events/community-calls/sharon-mccutcheon-colourful-unsplash.jpg similarity index 100% rename from static/images/sharon-mccutcheon-colourful-unsplash.jpg rename to content/events/community-calls/sharon-mccutcheon-colourful-unsplash.jpg diff --git a/content/events/2025-04-15/index.md b/content/events/events-current/2025-04-15/index.md similarity index 79% rename from content/events/2025-04-15/index.md rename to content/events/events-current/2025-04-15/index.md index a12886d1..0db9afaa 100644 --- a/content/events/2025-04-15/index.md +++ b/content/events/events-current/2025-04-15/index.md @@ -1,34 +1,23 @@ -+++ -fragment = "content" -weight = 100 -disabled = false -categories = ["Event"] +--- +title: "Towards an International Research Software Conference" +subtitle: "" +date: "2025-04-15" +authors: + - "" -title = "Towards an International Research Software Conference" -subtitle = "" -title_align = "left" +categories: + - Event + - Ongoing -display_date = true -publishdate = "2025-04-15" -date = "2025-04-15" +summary: "Read more..." +draft: false -summary = """ +image: + preview_only: true + filename: "inrscon.jpg" # This is the image file placed in static/media/ +--- - -""" - -[sidebar] - title = "Useful links" - align = "right" - sticky = true # Default is false - content = """ -* ReSA's [report](https://doi.org/10.5281/zenodo.14736835) - """ - -[asset] - image = "inrscon.jpg" - -+++ +![people-with-global-network](inrscon.jpg) A committee has been established to implement the recommendations from ReSA’s report, [_**Towards an International Research Software Conference**_](https://doi.org/10.5281/zenodo.14736835), aimed at fostering greater global engagement across the research software community. Among the key recommendations is the **first convening in 2026 of an annual international research software conference** to better engage change-makers, leaders and decision-makers from a range of stakeholder groups within the research software community, with equal representation of policy makers, national/international RSE associations, infrastructure providers, funders, university consortia, thematic communities (e.g. training), publishers, researchers on research software, etc. The inaugural international research software conference is expected to take place in the second half of 2026, alongside an existing event (yet to be determined). @@ -36,5 +25,7 @@ A committee has been established to implement the recommendations from ReSA’s **To join the organising committee:** email michelle@researchsoft.org to find out the next meeting date/s. - _Image credit: rawpixel.com on [Freepik](https://www.freepik.com/free-vector/character-illustration-people-with-global-network-concept_3226134.htm#fromView=search&page=1&position=34&uuid=79f72929-1ddd-4d02-928a-0727a2b8acef&query=global+meeting+and+computers)_ + +### Useful links +* ReSA's [report](https://doi.org/10.5281/zenodo.14736835) diff --git a/content/events/2025-04-15/inrscon.jpg b/content/events/events-current/2025-04-15/inrscon.jpg similarity index 100% rename from content/events/2025-04-15/inrscon.jpg rename to content/events/events-current/2025-04-15/inrscon.jpg diff --git a/content/events/2025-04/Brisbane.jpg b/content/events/events-current/2025-04/Brisbane.jpg similarity index 100% rename from content/events/2025-04/Brisbane.jpg rename to content/events/events-current/2025-04/Brisbane.jpg diff --git a/content/events/2025-04/index.md b/content/events/events-current/2025-04/index.md similarity index 80% rename from content/events/2025-04/index.md rename to content/events/events-current/2025-04/index.md index a19a988a..e62f2006 100644 --- a/content/events/2025-04/index.md +++ b/content/events/events-current/2025-04/index.md @@ -1,36 +1,25 @@ -+++ -fragment = "content" -weight = 100 -disabled = false -categories = ["Event"] +--- +title: "Supporting Research Software in Research Policy and Funding Programs" +subtitle: "" +date: "2025-04-09" +authors: + - "" -title = "Supporting Research Software in Research Policy and Funding Programs" -subtitle = "" -title_align = "left" +categories: + - Event + - Onging -display_date = true -publishdate = "2025-04-09" -date = "2025-04-09" +summary: "Read more..." -summary = """ +image: + preview_only: true + filename: "Brisbane.jpg" # This is the image file placed in static/media/ +draft: false +--- -""" +![city-skyline-under-clear-blue-sky-during-daytime](Brisbane.jpg) -[sidebar] - title = "Useful links" - align = "right" - sticky = true # Default is false - content = """ - * [Registration form](https://docs.google.com/forms/d/e/1FAIpQLSd-Wj0_cfY6xVrTXWSILOzd0ZD7loQVb3QpMg-jCTvZgiWElw/viewform) - * [International Data Week (IDW) 2025](https://idw2025.org/) - * [IDW Co-Located Events](https://idw2025.org/co-located-events/) - """ - -[asset] - image = "Brisbane.jpg" - -+++ Image credit: Brisbane Local Marketing on [Unsplash](https://unsplash.com/photos/city-skyline-under-clear-blue-sky-during-daytime-RJII3O7CTeo) **Friday 17 October 2025, 9am-noon AEST ([see in your time zone](https://www.timeanddate.com/worldclock/fixedtime.html?msg=Supporting+Research+Software+in+Research+Policy+and+Funding+Programs&iso=20251017T09&p1=47&ah=3))** @@ -43,4 +32,9 @@ The workshop will highlight ways in which stakeholders can support research soft Participants will gain actionable insights on increasing recognition of research software, integrating it into funding initiatives, and making a case internally for its value within both specific and broader funding programs and policies. -Funders and policymakers can [**register here**](https://forms.gle/vasS3ELYo9Et9ehn8). +Funders and policymakers can [**register here**](https://forms.gle/vasS3ELYo9Et9ehn8). + +### Useful links + * [Registration form](https://docs.google.com/forms/d/e/1FAIpQLSd-Wj0_cfY6xVrTXWSILOzd0ZD7loQVb3QpMg-jCTvZgiWElw/viewform) + * [International Data Week (IDW) 2025](https://idw2025.org/) + * [IDW Co-Located Events](https://idw2025.org/co-located-events/) diff --git a/content/events/2025-05/Global meeting.jpg b/content/events/events-current/2025-05/Global_meeting.jpg similarity index 100% rename from content/events/2025-05/Global meeting.jpg rename to content/events/events-current/2025-05/Global_meeting.jpg diff --git a/content/events/2025-05/index.md b/content/events/events-current/2025-05/index.md similarity index 57% rename from content/events/2025-05/index.md rename to content/events/events-current/2025-05/index.md index 623b60ce..0ceefbb0 100644 --- a/content/events/2025-05/index.md +++ b/content/events/events-current/2025-05/index.md @@ -1,43 +1,31 @@ -+++ -fragment = "content" -weight = 100 -disabled = false -categories = ["Event"] +--- +title: "New ReSA forums advance global research software efforts" +subtitle: "" +date: "2025-05-16" +authors: + - "" -title = "New ReSA forums advance global research software efforts" -subtitle = "" -title_align = "left" +categories: + - Event + - Ongoing -display_date = true -publishdate = "2025-05-16" -date = "2025-05-16" +summary: "Read more..." -summary = """ +image: + preview_only: true + filename: "Global_meeting.jpg" # This is the image file placed in static/media/ +draft: false -""" +--- -[sidebar] - title = "Useful links" - align = "right" - sticky = true # Default is false - content = """ - * [Metascience and Research Software (MaRS) Forum](https://www.researchsoft.org/mars-forum/) - * [Publishing Research Software (PubSoft) Forum](https://www.researchsoft.org/pubsoft-forum/) - * [Research Software Policy (RSP) Forum](https://www.researchsoft.org/rsp-forum/) - * [Skills and Training for Research Software (STaRS) Forum](https://www.researchsoft.org/stars-forum/) - """ - -[asset] - image = "Global meeting.jpg" - -+++ +![](Global_meeting.jpg) ReSA is excited to announce the launch of four new forums designed to foster global collaboration and accelerate progress in research software sustainability: -- [**Metascience and Research Software (MaRS) Forum**](https://www.researchsoft.org/mars-forum/) brings together metascience groups, communities, and organizations to explore the impact of research software on the research ecosystem, especially its role in shaping the research process. -- [**Publishing Research Software (PubSoft) Forum**](https://www.researchsoft.org/pubsoft-forum/) is a collaboration of publishing organisations/initiatives that share academic research and scholarship. This includes both traditional publishers that publish text and/or software papers. -- [**Research Software Policy (RSP) Forum**](https://www.researchsoft.org/rsp-forum/) is a collaboration of policymakersβ€”including representatives from organisations involved in research, open science, and open source softwareβ€”who shape policy at national, regional, or international levels. -- [**Skills and Training for Research Software (STaRS) Forum**](https://www.researchsoft.org/stars-forum/) is a collaboration of skills and training organisations/initiatives that create curricula and learning pathwaysβ€”primarily at international, national, or disciplinary levelsβ€”to support research software. +- [**Metascience and Research Software (MaRS) Forum**](/forums/mars-forum/) brings together metascience groups, communities, and organizations to explore the impact of research software on the research ecosystem, especially its role in shaping the research process. +- [**Publishing Research Software (PubSoft) Forum**](/forums/pubsoft-forum/) is a collaboration of publishing organisations/initiatives that share academic research and scholarship. This includes both traditional publishers that publish text and/or software papers. +- [**Research Software Policy (RSP) Forum**](/forums/rsp-forum/) is a collaboration of policymakersβ€”including representatives from organisations involved in research, open science, and open source softwareβ€”who shape policy at national, regional, or international levels. +- [**Skills and Training for Research Software (STaRS) Forum**](/forums/stars-forum/) is a collaboration of skills and training organisations/initiatives that create curricula and learning pathwaysβ€”primarily at international, national, or disciplinary levelsβ€”to support research software. These forums provide a formal mechanism for members to share practices and consider how to individually and collectively address common challenges to achieve the significant cultural change needed across the research sector globally. @@ -63,5 +51,10 @@ Meetings will occur at least annually or biannually, and each meeting will occur Each forum offers opportunities to engage with peers, share insights, and contribute to a coordinated global effort. If you're interested in participating in one of these forums, please contact [ReSA](mailto:info@researchsoft.org). - Image by storyset on [Freekpik](https://www.freepik.com/free-vector/group-discussion-concept-illustration_236238190.htm#fromView=search&page=1&position=11&uuid=e6fe85e2-6539-49f2-b79e-5a9d288a9849&query=online+global+meeting) + +### Useful links + * [Metascience and Research Software (MaRS) Forum](/forums/mars-forum/) + * [Publishing Research Software (PubSoft) Forum](/forums/pubsoft-forum/) + * [Research Software Policy (RSP) Forum](/forums/rsp-forum/) + * [Skills and Training for Research Software (STaRS) Forum](/forums/stars-forum/) diff --git a/content/events/events-current/_index.md b/content/events/events-current/_index.md new file mode 100644 index 00000000..b6f6999c --- /dev/null +++ b/content/events/events-current/_index.md @@ -0,0 +1,16 @@ +--- +title: Research Software Alliance - Current Events +cms_exclude: true + +# View. +# 1 = List +# 2 = Compact +# 3 = Card +# 4 = Citation +view: 2 + +# Optional header image (relative to `static/media/` folder). +header: + caption: 'Please view our [past events](/events/resa-events-past).' + image: '' +--- \ No newline at end of file diff --git a/content/events/2021-12/index.md b/content/events/events-past/2021-12/index.md similarity index 81% rename from content/events/2021-12/index.md rename to content/events/events-past/2021-12/index.md index 1cac2a2c..af0b2049 100644 --- a/content/events/2021-12/index.md +++ b/content/events/events-past/2021-12/index.md @@ -1,35 +1,22 @@ -+++ -fragment = "content" -weight = 100 -disabled = false -categories = ["Event", "Past"] - -title = "People Roadmap Webinar" -subtitle = "Report update" -title_align = "left" - -display_date = true -publishdate = "2021-11-01" -date = "2021-12-08" - - -summary = """ -ReSA will convene two webinars in early December to discuss the outcomes of the People Roadmap Report -""" - -[sidebar] - title = "Useful links" - align = "right" - sticky = true # Default is false - content = """ - * [People Roadmap Report](https://www.researchsoft.org/documents/people-roadmap.pdf) - * [Webinar recording](https://youtu.be/XvvrOZgi5Ns) - """ - -[asset] - image = "surface-unsplash-videoconference.jpg" - text = "collaboration" -+++ +--- +title: "People Roadmap Webinar" +subtitle: "Report update" +date: "2021-11-01" +authors: + - "" + +categories: + - Event + - Past + +summary: "Read more..." +image: + preview_only: true + filename: "surface-unsplash-videoconference.jpg" # This is the image file placed in static/media/ +draft: false +--- + +![Collaboration](surface-unsplash-videoconference.jpg) _This event took place in December 2021 and the recording of the webinar is available via the [ReSA YouTube Channel](https://youtu.be/XvvrOZgi5Ns) with link to [slides](https://tinyurl.com/Roadmap-slides)_ @@ -42,4 +29,9 @@ ReSA will host two webinars to further discuss this work. Registration is free, * Session 1: 8 December, 20:30 UTC (convert to [your timezone](https://www.timeanddate.com/worldclock/fixedtime.html?msg=ReSA+People+Roadmap&iso=20211208T2030&p1=%3A&ah=1)). [Register for this meeting](https://us02web.zoom.us/meeting/register/tZctcu6qqjIoHd0r709cKVt3s_4y_CRnzeQF) (free) * Session 2 (repeat session): 9 December, 09:00 UTC (convert to [your timezone](https://www.timeanddate.com/worldclock/fixedtime.html?msg=ReSA+People+Roamap&iso=20211209T09&ah=1)). [Register for this meeting](https://us02web.zoom.us/meeting/register/tZMtdOGopz8uGNHcuFbjeHJsu1cIg8nK1_0Y) (free) -Photo by Surface on Unsplash +Photo by Surface on Unsplash. + +### Useful links + * [People Roadmap Report](https://www.researchsoft.org/documents/people-roadmap.pdf) + * [Webinar recording](https://youtu.be/XvvrOZgi5Ns) + \ No newline at end of file diff --git a/content/events/2021-12/surface-unsplash-videoconference.jpg b/content/events/events-past/2021-12/surface-unsplash-videoconference.jpg similarity index 100% rename from content/events/2021-12/surface-unsplash-videoconference.jpg rename to content/events/events-past/2021-12/surface-unsplash-videoconference.jpg diff --git a/content/events/2022-04/Vive-la-Difference-Poster.pdf b/content/events/events-past/2022-04/Vive-la-Difference-Poster.pdf similarity index 100% rename from content/events/2022-04/Vive-la-Difference-Poster.pdf rename to content/events/events-past/2022-04/Vive-la-Difference-Poster.pdf diff --git a/content/events/2022-04/Viveladifference_sponsors.png b/content/events/events-past/2022-04/Viveladifference_sponsors.png similarity index 100% rename from content/events/2022-04/Viveladifference_sponsors.png rename to content/events/events-past/2022-04/Viveladifference_sponsors.png diff --git a/content/events/2022-04/index.md b/content/events/events-past/2022-04/index.md similarity index 76% rename from content/events/2022-04/index.md rename to content/events/events-past/2022-04/index.md index 4c08954c..dff76486 100644 --- a/content/events/2022-04/index.md +++ b/content/events/events-past/2022-04/index.md @@ -1,34 +1,22 @@ -+++ -fragment = "content" -weight = 100 -disabled = false -categories = ["Event", "Past"] - -title = "Vive la diffΓ©rence - research software engineers" -subtitle = "Lorentz workshop" -title_align = "left" - -display_date = true -publishdate = "2021-10-25" -date = "2022-04-19" - -summary = """ -Hybrid workshop on reframing research software engineering to place diversity, equity and inclusion as a central organising principle, April 2022 -""" - -[sidebar] - title = "Useful links" - align = "right" - sticky = true # Default is false - content = """ - * [Lorentz Centre](https://www.lorentzcenter.nl/about-us.html) - * [Workshop Page](https://www.lorentzcenter.nl/vive-la-difference-research-software-engineers.html) - """ - -[asset] - image = "myleon-unsplash-collaboration.jpg" - text = "collaboration" -+++ +--- +title: "Vive la diffΓ©rence - research software engineers" +subtitle: "Lorentz workshop" +date: "2021-10-25" +authors: + - "" + +categories: + - Event + - Past + +summary: "Read more..." +image: + preview_only: true + filename: "myleon-unsplash-collaboration.jpg" # This is the image file placed in static/media/ +draft: false +--- + +![Collaboration](myleon-unsplash-collaboration.jpg) β€œVive la diffΓ©rence - research software engineers” is a hybrid event with an in-person element from 19-22 April 2022 at the [Lorentz Centre](https://www.lorentzcenter.nl/about-us.html) in the Netherlands; and online events from March-April 2022 across different time zones. This workshop will bring together a wide range of stakeholders who have not previously collaborated, to analyse best practice and available data to identify both research opportunities and solutions to their own local challenges, to create an informal network of champions in this area. @@ -45,11 +33,11 @@ The workshop aims to: 4. Connect efforts on improving DEI in research software engineering with similar efforts in the open source software community. 5. Bring together representatives of the increasing array of different types of organisations and initiatives in this space, as enabling more alignment and networks between these has the potential to create the critical mass needed for some outcomes. These will include national RSE associations; DEI initiatives in RSE/data science; open source software; and industry. -More information on the rationale for the workshop and the **[event agenda](https://docs.google.com/document/d/1jmJwcnP_xbyk1pYVws7mTX-vHrYp9fnAhfjvD2hdbFY/edit#)** is available on the **[Lorentz workshop page](https://www.researchsoft.org/lorentz/)**. ReSA is also collaborating with national research software engineering associations on [DiveRSE](https://diverse-rse.github.io/), a series of talks that provides a public forum to complement the β€œVive la diffΓ©rence - research software engineers” workshop, which is limited to 55 participants. Find out more about the DiveRSE [event series](https://diverse-rse.github.io/about). +More information on the rationale for the workshop and the **[event agenda](https://docs.google.com/document/d/1jmJwcnP_xbyk1pYVws7mTX-vHrYp9fnAhfjvD2hdbFY/edit#)** is available on the **[Lorentz workshop page](/lorentz/)**. ReSA is also collaborating with national research software engineering associations on [DiveRSE](https://diverse-rse.github.io/), a series of talks that provides a public forum to complement the β€œVive la diffΓ©rence - research software engineers” workshop, which is limited to 55 participants. Find out more about the DiveRSE [event series](https://diverse-rse.github.io/about). **How to get involved** -Sign up to the [ReSA newsletter](https://www.researchsoft.org/news/) to hear more about the online public events from March-May 2022 that will be associated with the workshop. The workshop itself has a maximum of 55 participants, and if you are interested in joining the participant list please contact [info@researchsoft.org](mailto:info@researchsoft.org). +Sign up to the [ReSA newsletter](/news/) to hear more about the online public events from March-May 2022 that will be associated with the workshop. The workshop itself has a maximum of 55 participants, and if you are interested in joining the participant list please contact [info@researchsoft.org](mailto:info@researchsoft.org). **Workshop organisers** @@ -66,3 +54,7 @@ This workshop is sponsored by: Event photo by Leon on Unsplash. + +### Useful links + * [Lorentz Centre](https://www.lorentzcenter.nl/about-us.html) + * [Workshop Page](https://www.lorentzcenter.nl/vive-la-difference-research-software-engineers.html) diff --git a/content/events/2022-04/myleon-unsplash-collaboration.jpg b/content/events/events-past/2022-04/myleon-unsplash-collaboration.jpg similarity index 100% rename from content/events/2022-04/myleon-unsplash-collaboration.jpg rename to content/events/events-past/2022-04/myleon-unsplash-collaboration.jpg diff --git a/content/events/2022-05/colour-circles-bg-unsplash.jpg b/content/events/events-past/2022-05/colour-circles-bg-unsplash.jpg similarity index 100% rename from content/events/2022-05/colour-circles-bg-unsplash.jpg rename to content/events/events-past/2022-05/colour-circles-bg-unsplash.jpg diff --git a/content/events/2022-05/index.md b/content/events/events-past/2022-05/index.md similarity index 69% rename from content/events/2022-05/index.md rename to content/events/events-past/2022-05/index.md index dc1221ce..945bf776 100644 --- a/content/events/2022-05/index.md +++ b/content/events/events-past/2022-05/index.md @@ -1,37 +1,24 @@ -+++ -fragment = "content" -weight = 100 -disabled = false -categories = ["Ongoing","Event"] +--- +title: "DiveRSE" +subtitle: "Supporting EDI within the RSE community" +date: "2024-10-10" +authors: + - "" -title = "DiveRSE" -subtitle = "Supporting EDI within the RSE community" -title_align = "left" +categories: + - Event + - Past -display_date = true -publishdate = "2024-10-10" -date = "2022-05-04" +summary: "Read more..." +image: + preview_only: true + filename: "colour-circles-bg-unsplash.jpg" # This is the image file placed in static/media/ +draft: false -summary = """ -ReSA supports "DiveRSE" a series of talks and related activities supporting Equity, Diversity and Inclusion within the Research Software Engineering community -""" - - -[sidebar] - title = "Useful links" - align = "right" - sticky = true # Default is false - content = """ - * [DiveRSE website](https://diverse-rse.github.io/) - * [Videos](https://www.youtube.com/channel/UCL7rYOIAP1Rx_VajLPDF-hA) - """ - -[asset] - image = "colour-circles-bg-unsplash.jpg" - text = "colour circles" -+++ +--- +![colour circles](colour-circles-bg-unsplash.jpg) ## About [DiveRSE](https://diverse-rse.github.io/) @@ -44,6 +31,11 @@ The role title β€œResearch Software Engineer” (RSE) was first used only around As an open, friendly and welcoming community, there is enthusiasm for discussion about EDI challenges and successes. There have already been various examples within the community of events and related activties providing opportunities for discussing and understanding aspects of EDI. -ReSA is also collaborating with national research software engineering associations on [DiveRSE](https://diverse-rse.github.io/), a series of talks that provides a public forum to complement the [β€œVive la diffΓ©rence - research software engineers” workshop](https://www.researchsoft.org/events/2022-04/). Find out more about the DiveRSE [event series](https://diverse-rse.github.io/about). +ReSA is also collaborating with national research software engineering associations on [DiveRSE](https://diverse-rse.github.io/), a series of talks that provides a public forum to complement the [β€œVive la diffΓ©rence - research software engineers” workshop](/events/events-past/2022-04/). Find out more about the DiveRSE [event series](https://diverse-rse.github.io/about). Photo by Mel Poole on Unsplash. + +### Useful links + * [DiveRSE website](https://diverse-rse.github.io/) + * [Videos](https://www.youtube.com/channel/UCL7rYOIAP1Rx_VajLPDF-hA) + \ No newline at end of file diff --git a/content/events/2022-06/index.md b/content/events/events-past/2022-06/index.md similarity index 75% rename from content/events/2022-06/index.md rename to content/events/events-past/2022-06/index.md index 64ecbaf3..0062d3f4 100644 --- a/content/events/2022-06/index.md +++ b/content/events/events-past/2022-06/index.md @@ -1,44 +1,31 @@ -+++ -fragment = "content" -weight = 100 -disabled = false -categories = ["Ongoing","Event"] +--- +title: "ReSA Community Leaders Forum" +subtitle: "Bringing together the research software community" +date: "2024-10-11" +authors: + - "" -title = "ReSA Community Leaders Forum " -subtitle = "Bringing together the research software community" -title_align = "left" +categories: + - Event + - Past +summary: "Read more..." +image: + preview_only: true + filename: "sharon-mccutcheon-colourful-unsplash.jpg" # This is the image file placed in static/media/ +draft: false +--- -summary = """ -ReSA's mission is to bring research software communities together to collaborate on the advancement of the research software ecosystem. - -""" - - -[sidebar] - title = "Useful links" - align = "right" - sticky = true # Default is false - content = """ - * [Contact ReSA](../../contact/) - * [ReSA’s Code of Conduct](../../code-of-conduct/) - * [Register your email for updates](https://dashboard.mailerlite.com/forms/778129/110635102019519744/share) - """ - -[asset] - image = "sharon-mccutcheon-colourful-unsplash.jpg" - text = "Close up of tiny rainbow colored sugar candies." -+++ - +![Close up of tiny rainbow colored sugar candies.](sharon-mccutcheon-colourful-unsplash.jpg) ## Research Software Community Leaders Forum -The [Community Leaders Forum](https://www.researchsoft.org/community-forum/) (CLF) offers an opportunity for participants to meet other community leaders, engage in interactive discussions, and consider how to address common issues to achieve shared goals. The CLF is one of the online forums that ReSA hosts for decision makers and key influencers in the global research software community. ReSA aims to coordinate discussions across a wide range of research software organisations and programs, enabling the community to create outcomes that will achieve both local goals and those of the international community. +The [Community Leaders Forum](/forums/community-leadership-forum/) (CLF) offers an opportunity for participants to meet other community leaders, engage in interactive discussions, and consider how to address common issues to achieve shared goals. The CLF is one of the online forums that ReSA hosts for decision makers and key influencers in the global research software community. ReSA aims to coordinate discussions across a wide range of research software organisations and programs, enabling the community to create outcomes that will achieve both local goals and those of the international community. The CLF is open to everyone and features a short talk and follow-up discussion, with the aim of facilitating community consideration about next steps to address particular issues. We welcome input about topics for discussion. Please let us know if you’d like to suggest a topic for an upcoming call. -Meetings occur at alternating times to maximise attendance by participants in different time zones. The CLF endeavours to provide a welcoming and inclusive environment, and to engage a broad range of participants from across the globe. Meetings utilise ReSA’s [Code of Conduct](https://www.researchsoft.org/code-of-conduct/). To help us plan accessible calls, please let us know any requirements you may have by contacting info@researchsoft.org. +Meetings occur at alternating times to maximise attendance by participants in different time zones. The CLF endeavours to provide a welcoming and inclusive environment, and to engage a broad range of participants from across the globe. Meetings utilise ReSA’s [Code of Conduct](.../.../about/code-of-conduct/). To help us plan accessible calls, please let us know any requirements you may have by contacting info@researchsoft.org. ### Upcoming calls: @@ -48,7 +35,7 @@ Meetings occur at alternating times to maximise attendance by participants in di ### Past calls: -* 15 November 2023, 20:00-21:00 UTC, see [notes](https://docs.google.com/document/d/1CRYoycC-uwmRfC10nlLTHMfuwDai-RwEqjWQedfrG3U/edit), [video](https://www.youtube.com/watch?v=4SWUnLOTNsQ), and [slides](https://docs.google.com/presentation/d/1pvgggk_3MNGWrPTKKIINWy5XQyuoNuHB-07RZed-AkU/edit#slide=id.g241153165a8_0_0). Topic: Update on Research Software Alliance (ReSA) strategy, engagement and operations, including the proposed ReSA-RDA Working Group on [Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/policies-research-organisations-research-software-pro4rs), our Organisational Membership program, and the work of our [Community Managers](https://www.researchsoft.org/people/) in Asia and Africa. +* 15 November 2023, 20:00-21:00 UTC, see [notes](https://docs.google.com/document/d/1CRYoycC-uwmRfC10nlLTHMfuwDai-RwEqjWQedfrG3U/edit), [video](https://www.youtube.com/watch?v=4SWUnLOTNsQ), and [slides](https://docs.google.com/presentation/d/1pvgggk_3MNGWrPTKKIINWy5XQyuoNuHB-07RZed-AkU/edit#slide=id.g241153165a8_0_0). Topic: Update on Research Software Alliance (ReSA) strategy, engagement and operations, including the proposed ReSA-RDA Working Group on [Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/policies-research-organisations-research-software-pro4rs), our Organisational Membership program, and the work of our [Community Managers](/about/our-team/) in Asia and Africa. * 18 October 2023, 10:00-11:00 UTC, see [notes](https://docs.google.com/document/d/1rUBoqc31ydFgbGNN0vDplIOrfrMJTPpFQgPoEpzWcRY/edit), [video](https://www.youtube.com/watch?v=iWId3GTeTnk), and [slides](https://docs.google.com/presentation/d/1BA1brC1xLrpXFl_CIsYkhovHtBK4qmFUP98sgQKm17c/edit#slide=id.g241153165a8_0_0). Topic: Debrief on the second [International Research Software Funders Workshop](https://adore.software/international-research-software-funders-workshop/) and release of the [Amsterdam Declaration for Funding Research Software Sustainability](https://adore.software/declaration/). Do you adore software? Let your funders know so they can get involved with the Declaration. * 29 November 2022, 15:00-16.00 UTC, see [agenda](https://docs.google.com/document/d/1vpSlEcrkmmuBV6HFOHaoihIzT5HGLwoNRNwez5GFqYw/edit) and [blog](https://www.future-of-research-software.org/) on [International Funders Workshop: The Future of Research Software](https://www.future-of-research-software.org/ ). * 12 October 2022, 03:00–04:00 UTC, see [agenda](https://docs.google.com/document/d/10QO3F_1_rHHHrDHwXQchPaohmbJmq-uG6cmxLV4xe-U/edit), [video](https://www.youtube.com/watch?v=pxmYroTxz-A) and [slides](https://docs.google.com/presentation/d/1TqG9uof7FGtKFK6yoDB56O8P21jnFjLedrvTeT_WWCk/present?slide=id.gc6f75fceb_0_0) from the talk by Paula Andrea Martinez, ReSA and Australian Research Data Commons (ARDC), on [The Research Software Community in the Global South](https://doi.org/10.5281/zenodo.7179892). This forum was jointly convened with [RSE Australian/New Zealand](rse-aunz.org) and the [Visible Research Software Interest Group](https://bit.ly/vrs-ig). @@ -57,3 +44,8 @@ Meetings occur at alternating times to maximise attendance by participants in di * 19 July 2022 11:00-12:00 UTC, [agenda](https://docs.google.com/document/d/1tRaqpolrr_LOxyHjvBNUvHgze16IkQ9uUD4HuHU1gAM/edit) and [slides](https://docs.google.com/presentation/d/1zfFHExj-xc8pw3KeaIAPEnfVqQ_Zodrc0Vu9Tu5QCjk/edit#slide=id.g11d79f76048_0_20) from the talk by Michelle Barker, ReSA, on the outcomes of [Vive la diffΓ©rence - research software engineers](https://zenodo.org/record/6816193#.YyKMwexBy7N), a workshop that considered how to reframe research software engineering to place diversity, equity and inclusion as a central organising principle. Photo by Sharon McCutcheon on Unsplash. + +### Useful links + * [Contact ReSA](../../contact/) + * [ReSA’s Code of Conduct](.../.../about/code-of-conduct/) + * [Register your email for updates](https://dashboard.mailerlite.com/forms/778129/110635102019519744/share) diff --git a/content/events/events-past/2022-06/sharon-mccutcheon-colourful-unsplash.jpg b/content/events/events-past/2022-06/sharon-mccutcheon-colourful-unsplash.jpg new file mode 100644 index 00000000..82b2f2d1 Binary files /dev/null and b/content/events/events-past/2022-06/sharon-mccutcheon-colourful-unsplash.jpg differ diff --git a/content/events/events-past/2024-01/index.md b/content/events/events-past/2024-01/index.md new file mode 100644 index 00000000..e326dee4 --- /dev/null +++ b/content/events/events-past/2024-01/index.md @@ -0,0 +1,27 @@ +--- +title: "2024 International Research Software Funders Workshop" +subtitle: "Towards a monitoring framework to benchmark the ADORE.software recommendations and improve the sustainability of research software" +date: "2024-01-23" +authors: + - "" + +categories: + - Event + - Past + +summary: "Read more..." +draft: false + +--- + +# Event Summary +The SciLifeLab Data Centre and the Research Software Alliance (ReSA) are hosting an international workshop in Uppsala September 9-13, 2024.The workshop will focus on operationalizing the Amsterdam Declaration on Funding Research Software Sustainability (ADORE.software) by developing a monitoring framework to benchmark how funders are currently supporting the sustainability of research software using the recommendations as a starting point. Additionally, the workshop will examine how such a monitoring framework can be leveraged by funders and the community. + +**[Read more details about the event](https://adore.software/2024-international-research-software-funders-workshop/)** + +### Useful links + + * [2023 Research Software Funders Workshop](https://adore.software/international-research-software-funders-workshop/) + * [2022 Research Software Funders Workshop](https://adore.software/2023/03/international-funders-workshop-the-future-of-research-software/) + * [Research Software Funders Forum](/forums/funders-forum/) + * [Subscribe to ReSA newsletter](/news/) diff --git a/content/events/2024-10/chris-montgomery-smgTvepind4-unsplash.jpg b/content/events/events-past/2024-10/chris-montgomery-smgTvepind4-unsplash.jpg similarity index 100% rename from content/events/2024-10/chris-montgomery-smgTvepind4-unsplash.jpg rename to content/events/events-past/2024-10/chris-montgomery-smgTvepind4-unsplash.jpg diff --git a/content/events/2024-10/index.md b/content/events/events-past/2024-10/index.md similarity index 70% rename from content/events/2024-10/index.md rename to content/events/events-past/2024-10/index.md index 54328bb7..98b291eb 100644 --- a/content/events/2024-10/index.md +++ b/content/events/events-past/2024-10/index.md @@ -1,47 +1,23 @@ -+++ -fragment = "content" -weight = 100 -disabled = false -categories = ["Past","November 1, 2024", "November 4, 2024", "November 5, 2024", "Event"] +--- +title: "Towards an International Research Software Conference: Join our Community Consultation" +subtitle: "" +date: "2024-10-15" +authors: + - "" + +categories: + - Event + - Past + +summary: "Read more..." +image: + preview_only: true + filename: "chris-montgomery-smgTvepind4-unsplash.jpg" # This is the image file placed in static/media/ +draft: false + +--- +![Image credit: Chris Montgomery, [Unsplash](https://unsplash.com/photos/macbook-pro-displaying-group-of-people-smgTvepind4)](chris-montgomery-smgTvepind4-unsplash.jpg) -title = "Towards an International Research Software Conference: Join our Community Consultation" -subtitle = "" -title_align = "left" - -display_date = true -publishdate = "2024-10-15" -date = "2024-10-31" - -summary = """ -Join one of our upcoming webinars to discuss community-supported routes for convening the first-ever international research software conference in 2025/26, or provide feedback asynchronously on the options paper, Towards an international research software conference (version 2). - -ReSA is engaging with key stakeholders to identify and recommend possible options, with three conference options proposed currently. These all share a common overarching aim of community building but differ in the communities they focus on. - -The next stage of the development of these ideas is to gain feedback through open public consultation. This includes identifying stakeholders who would be interested in shepherding the development of at least one of these ideas in 2025/26, including possible pilots in 2025. -""" - - -[sidebar] - title = "Useful links" - align = "right" - sticky = true # Default is false - content = """ - * [Towards an international research software conference (version 2)](https://docs.google.com/document/d/1hHtEn8IVpLSWhxIDJ0_JSUNPDjmXpTd0m5IFh2jBD7s/edit?tab=t.0) - * [Questionnaire](https://forms.gle/uruKDPhDRJqfbFzA9) - * Calendar invites (click on the dates below to download the .ics file): - * [31 Oct 2024, 20:00-21:00 UTC](https://drive.google.com/file/d/1r4O6u8QPtnFZEMRolUMxWLe-eAtBOEen/view?usp=drive_link) - * [1 Nov 2024, 09:00-10:00 UTC](https://drive.google.com/file/d/1nh-rAKN1hJU-UJ7yZNtzSNz7hW4fS1cQ/view?usp=drive_link) - * [4 Nov 2024, 21:00-22:00 UTC](https://drive.google.com/file/d/1_ZDPp_nFBNUcVg6_d3jLfFy-bGJQECAu/view?usp=drive_link) - * [5 Nov 2024, 05:00-6:00 UTC](https://drive.google.com/file/d/1MluuHJdOjCxvF2JCRgCbV5GIj2hj1OsO/view?usp=drive_link) - * [5 Nov 2024, 09:00-10:00 UTC](https://drive.google.com/file/d/11WDjEWESC9d5KWWIeEyoIJ1u7GL7w-ic/view?usp=drive_link) - * [ReSA’s Code of Conduct](../../code-of-conduct/) - * [Subscribe to ReSA newsletter](https://www.researchsoft.org/news/) - """ - -[asset] - image = "chris-montgomery-smgTvepind4-unsplash.jpg" - text = "Image credit: Chris Montgomery, [Unsplash](https://unsplash.com/photos/macbook-pro-displaying-group-of-people-smgTvepind4)" -+++ # Event Summary Join one of our upcoming webinars to discuss community-supported routes for convening the first-ever international research software conference in 2025/26, or provide feedback asynchronously on the options paper, [Towards an international research software conference (version 2)](https://docs.google.com/document/d/1hHtEn8IVpLSWhxIDJ0_JSUNPDjmXpTd0m5IFh2jBD7s/edit?tab=t.0). @@ -71,3 +47,15 @@ Anyone can provide feedback or ask questions through the following methods: * Emailing questions or comments to info@researchsoft.org. The closing date for input and feedback is **Friday 15 November, 2024**. + +### Useful links + * [Towards an international research software conference (version 2)](https://docs.google.com/document/d/1hHtEn8IVpLSWhxIDJ0_JSUNPDjmXpTd0m5IFh2jBD7s/edit?tab=t.0) + * [Questionnaire](https://forms.gle/uruKDPhDRJqfbFzA9) + * Calendar invites (click on the dates below to download the .ics file): + * [31 Oct 2024, 20:00-21:00 UTC](https://drive.google.com/file/d/1r4O6u8QPtnFZEMRolUMxWLe-eAtBOEen/view?usp=drive_link) + * [1 Nov 2024, 09:00-10:00 UTC](https://drive.google.com/file/d/1nh-rAKN1hJU-UJ7yZNtzSNz7hW4fS1cQ/view?usp=drive_link) + * [4 Nov 2024, 21:00-22:00 UTC](https://drive.google.com/file/d/1_ZDPp_nFBNUcVg6_d3jLfFy-bGJQECAu/view?usp=drive_link) + * [5 Nov 2024, 05:00-6:00 UTC](https://drive.google.com/file/d/1MluuHJdOjCxvF2JCRgCbV5GIj2hj1OsO/view?usp=drive_link) + * [5 Nov 2024, 09:00-10:00 UTC](https://drive.google.com/file/d/11WDjEWESC9d5KWWIeEyoIJ1u7GL7w-ic/view?usp=drive_link) + * [ReSA’s Code of Conduct](.../.../about/code-of-conduct/) + * [Subscribe to ReSA newsletter](/news/) diff --git a/content/events/2025-02/2024-09-24-image.jpeg b/content/events/events-past/2025-02/2024-09-24-image.jpeg similarity index 100% rename from content/events/2025-02/2024-09-24-image.jpeg rename to content/events/events-past/2025-02/2024-09-24-image.jpeg diff --git a/content/events/events-past/2025-02/index.md b/content/events/events-past/2025-02/index.md new file mode 100644 index 00000000..8dc086b1 --- /dev/null +++ b/content/events/events-past/2025-02/index.md @@ -0,0 +1,36 @@ +--- +title: "Towards an international research software conference: Join our committees!" +subtitle: "" +date: "2025-02-11" +authors: + - "" + +categories: + - Event + - Past + +summary: "Read more..." +image: + preview_only: true + filename: "2024-09-24-image.jpeg" # This is the image file placed in static/media/ +draft: false + +--- + +![global connectivity - work on laptop](2024-09-24-image.jpeg) + +Image credit: Viri GutiΓ©rrez, [Lummi](https://www.lummi.ai/photo/global-connectivity-work-on-laptop-hhipk) + +ReSA has established three committees to lead development of each of the three options identified within [*Towards an International Research Software Conference*](https://zenodo.org/records/14793104). If you're passionate about advancing the research software community, consider joining a committee/s by reaching out to [michelle@researchsoft.org](mailto:michelle@researchsoft.org) to find out the next meeting date/s. + +The three committees are: + +1) **International hybrid annual conference** on research software: Committee’s Google [folder](https://drive.google.com/drive/u/0/folders/1qoDYOJLukuOP53iVEqB2RaY_saZdOPWM) + +2) **Series of research software workshops** at existing events: Committee's Google [folder](https://drive.google.com/drive/u/0/folders/1YsBW2PjIcSGzaI4rGqtxs4Nez47fpjoG) + +3) Champions programs: Committee’s Google [folder](https://drive.google.com/drive/u/0/folders/1PGAP96f-Fj8Sw4gr_47soZffSTq5bJAp) + +### Useful links + * [ReSA’s Code of Conduct](.../.../about/code-of-conduct/) + * [Subscribe to ReSA newsletter](/news/) diff --git a/content/events/events-past/2025-03/9354.jpg b/content/events/events-past/2025-03/9354.jpg new file mode 100644 index 00000000..7292a0f3 Binary files /dev/null and b/content/events/events-past/2025-03/9354.jpg differ diff --git a/content/events/2025-03/index.md b/content/events/events-past/2025-03/index.md similarity index 84% rename from content/events/2025-03/index.md rename to content/events/events-past/2025-03/index.md index 71370d21..fe019b4f 100644 --- a/content/events/2025-03/index.md +++ b/content/events/events-past/2025-03/index.md @@ -1,38 +1,23 @@ -+++ -fragment = "content" -weight = 100 -disabled = false -categories = ["Event"] +--- +title: "Strategic Plan 2025-28 - Public Feedback Sessions" +subtitle: "" +date: "2025-03-18" +authors: + - "" -title = "Strategic Plan 2025-28 - Public Feedback Sessions" -subtitle = "" -title_align = "left" +categories: + - Event -display_date = true -publishdate = "2025-03-18" -date = "2025-03-18" +summary: "Read more..." +image: + preview_only: true + filename: "9354.jpg" # This is the image file placed in static/media/ +draft: false -summary = """ -ReSA is seeking feedback on the ReSA Strategic Plan 2025-28. +--- -""" +![image with icons of loud speakers](9354.jpg) - -[sidebar] - title = "Useful links" - align = "right" - sticky = true # Default is false - content = """ - * [Draft Strategic Plan overview](https://docs.google.com/document/d/1XAioZINde902hlujD9hIaiIK5Eagx7w5XP9f8Q7P0KU/edit?tab=t.0#heading=h.lbr59vck876) - * [Draft Strategic Plan](https://docs.google.com/document/d/1-nyor44kBo5v6lb92ajjzJmYFJ-TXLcafyUz9luQMVk/edit?tab=t.0#heading=h.iiwcx8uz2jje) - * [ReSA’s Code of Conduct](../../code-of-conduct/) - * [Subscribe to ReSA newsletter](https://www.researchsoft.org/news/) - """ - -[asset] - image = "9354.jpg" - -+++ Image credit: 8photo on [Freepik](https://www.freepik.com/free-photo/business-concept-with-icons-wooden-cubes-wooden-table-flat-lay_9485774.htm#fromView=search&page=1&position=30&uuid=75856da7-0985-465e-a819-3cbbe75a81e2&query=strategic+plan) @@ -54,3 +39,9 @@ You can also provide feedback by other means: * Email questions or comments to [info[at]researchsoft.org](mailto:info@researchsoft.org) We look forward to hearing your input to ensure the final plan meets community needs. + +### Useful links + * [Draft Strategic Plan overview](https://docs.google.com/document/d/1XAioZINde902hlujD9hIaiIK5Eagx7w5XP9f8Q7P0KU/edit?tab=t.0#heading=h.lbr59vck876) + * [Draft Strategic Plan](https://docs.google.com/document/d/1-nyor44kBo5v6lb92ajjzJmYFJ-TXLcafyUz9luQMVk/edit?tab=t.0#heading=h.iiwcx8uz2jje) + * [ReSA’s Code of Conduct](.../.../about/code-of-conduct/) + * [Subscribe to ReSA newsletter](/news/) diff --git a/content/events/events-past/_index.md b/content/events/events-past/_index.md new file mode 100644 index 00000000..0efa412a --- /dev/null +++ b/content/events/events-past/_index.md @@ -0,0 +1,16 @@ +--- +title: Research Software Alliance - Past Events +cms_exclude: true + +# View. +# 1 = List +# 2 = Compact +# 3 = Card +# 4 = Citation +view: 2 + +# Optional header image (relative to `static/media/` folder). +header: + caption: '' + image: '' +--- \ No newline at end of file diff --git a/content/forums/_index.md b/content/forums/_index.md new file mode 100644 index 00000000..65e84053 --- /dev/null +++ b/content/forums/_index.md @@ -0,0 +1,6 @@ +--- +title: +date: 2025-05-22 +type: landing + +--- \ No newline at end of file diff --git a/content/forums/community-leadership-forum/_index.md b/content/forums/community-leadership-forum/_index.md new file mode 100644 index 00000000..043709d2 --- /dev/null +++ b/content/forums/community-leadership-forum/_index.md @@ -0,0 +1,88 @@ +--- +title: +date: 2025-06-04 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Research Software Community Leadership Forum (CLF) + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + + + - block: markdown + content: + title: + text: | + +
+
+ + The **Research Software Community Leadership Forum (CLF)** supports ReSA’s [vision](https://www.researchsoft.org/) by serving as a forum for community leaders to collaborate, share insights, and advance the research software ecosystem. It draws on the diverse expertise and perspectives of our stakeholders to ensure that decision-making is participatory and inclusive. + + The CLF provides a formal mechanism for members to consider how to collectively address common challenges to achieve the significant cultural change needed across the research sector globally. It aims to: + - Identify a shared vision for the research software community, and could create longer-term outcomes such as development of a decadal plan for research software (see CODATA’s for research data) + - Identify community priorities and ultimately assist in coordination to address these + - Represent the research software community in broader international discussions of relevance to open science and/or open source scientific software, such as OECD, UNESCO, COARA, etc. + + Membership is comprised of representatives from two stakeholder groups: + + 1. Each of ReSA’s stakeholder forums will elect two representatives to the CLF. These elected members will bring forward the insights, concerns, and contributions of their respective communities to inform the wider leadership dialogue. The current ReSA stakeholder forums are: + - [Research Software Infrastructure (RSI) Forum](/forums/rsi-forum/) - for infrastructure organisations that serve research software and that seek to help identify and resolve gaps and points of friction in using infrastructures in various research software use cases. + - [Research Software Policy (RSP) Forum](/forums/rsp-forum/) - for policymakers that focus on research, open science, and open source software, and influence policy at the national, regional, and/or international level. + - [Metascience and Research Software (MaRS) Forum](/forums/mars-forum/) - for stakeholders that conduct research to understand implications of research software on the research ecosystem, particularly on the research process. + - [Publishing Research Software (PubSoft) Forum](/forums/pubsoft-forum/) - for publishers that share academic research and scholarship, including both traditional publishers that publish text and/or software papers. + - [Skills and Training for Research Software (STaRS) Forum](/forums/stars-forum/) - for skills and training organisations/initiatives that focus on developing curricula and learning pathways to support the development of research software. + - [International Council of RSE Associations](https://researchsoftware.org/council.html) + + 2. An open nomination process to ensure representation of stakeholders not already engaged through ReSA forums. The nomination process for missing voices is through self-nomination. The key criteria for nominees is their ability to represent a missing stakeholder group, with evidence of engagement with and representation of that group for this nomination. ReSA will also conduct targeted outreach to identify and encourage participation from missing voices, such as research support infrastructures and university consortia. + + **Time commitment** + + CLF representatives serve three-year terms, with an annual time commitment of approximately 5–10 hours. This includes attending 1–2 online meetings each year, as well as participating in asynchronous discussions. Members are expected to act as liaisons between the CLF and their stakeholder groups, bringing forward relevant perspectives, priorities, and insights to support inclusive leadership in the research software community. + + **How to apply** + + There are two paths to join: + + **1. Via stakeholder forums** + + Eligible forum participants will receive an invitation from ReSA to nominate themselves, followed by an internal voting process. + + **2. Via open nomination - [apply here](https://forms.gle/wHnn4vDQiPatHY6M6)** + + Individuals from stakeholder groups not yet represented can self-nominate by completing this [Google form](https://forms.gle/wHnn4vDQiPatHY6M6). + + The ReSA Steering Committee will review all submissions, and the selected representatives will be announced in October. + + + **Deadline for submissions: 5 September 2025** + + For further information, please refer to the [CLF Nomination Process](https://docs.google.com/document/d/1jXKFrS1s0_dJiLv0uryaTDzUa453w98jnH0DuWWf3dU/edit?usp=drive_link) or the [Terms of Reference](https://docs.google.com/document/d/15uOY6fQbvE0dfEzZkADaDwMtIGqbXcS3PHVzCvSStbE/edit?usp=drive_link) or email info@researchsoft.org. + +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- \ No newline at end of file diff --git a/content/forums/funders-forum/_index.md b/content/forums/funders-forum/_index.md new file mode 100644 index 00000000..f82695fd --- /dev/null +++ b/content/forums/funders-forum/_index.md @@ -0,0 +1,129 @@ +--- +title: +date: 2025-05-22 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Research Software Funders Forum + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + + + - block: markdown + content: + title: + text: | + +
+
+ + The Research Software Funders Forum is a collaboration of funding organisations committed to supporting research software, and those who develop it, as fundamental and vital to research. It provides a formal mechanism for funders to share practices and consider how to address common challenges to achieve the significant cultural change needed across the research sector globally. For further information, please refer to the [Terms of Reference](https://docs.google.com/document/d/1UHnEAMmZI9glkqoT8Mx36A15xJqupdUmp_qBFCwY0rI/edit) and this ReSA blog post: [Funder community focuses on crucial role of research software](/blog/2024-06-20/) + + Software has become an [essential constituent](https://zenodo.org/record/3884311) of research and research software is starting to be seen as an equal partner of research data in key international policy documents such as [UNESCO](https://en.unesco.org/science-sustainable-future/open-science/recommendation) and the [OECD](https://www.oecd.org/en/publications/oecd-principles-and-guidelines-for-access-to-research-data-from-public-funding_9789264034020-en-fr.html). However, support and recognition of the importance of research software and the people who develop and maintain it, has failed to keep pace with the scale of use of research software in research. + + Funders can play a key role in changing practices in the research sector, and an increasing number of funders are now supporting the advancement of research software. Increased focus on research software can provide societal benefits that include accelerating innovation, reducing information-sharing gaps, encouraging innovation, and promoting reproducibility. + + The Research Software Funders Forum aims to provide a formal mechanism to increase: + + - Sharing of funding practices for research software and the people that develop and maintain it, and learning about those practices, to encourage reflection and advancement. + - Consideration of how to address key research software community challenges, both technical and social to achieve the significant cultural change needed across the research sector globally. + - Expansion of networks to increase sense of community and identification of collaboration opportunities. + - Consideration of opportunities to achieve long-term sustainability for research software, especially those that are part of key global infrastructures. + + Membership is open to any initiative that funds research software. To join please contact [info@researchsoft.org](mailto:info@researchsoft.org). + + ### ADORE.software + + The [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/) (ADORE.software) represents a first step to formalise, on a global level, the basic principles and recommendations related to funding the sustainability of research software, including the people needed to achieve this goal. ADORE.software’s complementary [toolkit](https://adore.software/toolkit/) provides examples of programs, policies, and resources for each of the Declaration’s recommendations in the four areas of research software practice, research software ecosystem, research software personnel, and research software ethics. + + ### International Research Software Funders Workshops + + Since 2022, the Funders Forum has convened annual global gatherings of research software funders. + + ([2022](https://adore.software/2023/03/international-funders-workshop-the-future-of-research-software/)) International Funders Workshop: The Future of Research Software. The [Netherlands eScience Center](https://www.esciencecenter.nl/) and ReSA co-hosted this workshop in Amsterdam, the Netherlands. See the [blog post](/blog/2022-11/) and [report](https://zenodo.org/records/7384410#.Y4k4VexBw3E). Prior to the workshop, the [Australian Research Data Commons (ARDC)](https://ardc.edu.au/) and ReSA co-hosted a workshop on [research software visibility](https://future-of-research-software.org/pre-workshop/). Slides from the pre-workshop event are available via ReSA’s [Zenodo community](https://zenodo.org/communities/resa/records?q=&l=list&p=1&s=10). + + ([2023](https://adore.software/international-research-software-funders-workshop/)) International Research Software Funders Workshop - Investing in People: Anticipating the Future of Research Software. The [Digital Research Alliance of Canada](https://alliancecan.ca/en) and ReSA co-hosted this workshop in Montreal, Canada, and online. See the [blog post](/blog/2023-10/) and [report](https://zenodo.org/records/10552116). Prior to this workshop, ReSA delivered a half-day session on [How to Explicitly Support Research Software as Part of Your Funding Program](https://docs.google.com/presentation/d/1UP_UGOPxYi0R4UAE5PRpGWoJzrQ2FkVmCdDBILR6t2U/edit#slide=id.g241153165a8_0_0). There was also a half-day session on [CiteSoftware](https://zenodo.org/records/8356278), led by a group of stakeholders aiming to drive the adoption of a common research software preservation and citation guidance resource for the research community. + + ([2024](https://adore.software/2024-international-research-software-funders-workshop/)) International Research Software Funders Workshop: Towards a monitoring framework to benchmark the ADORE.software recommendations and improve the sustainability of research software. The [SciLifeLab](https://www.scilifelab.se/) [Data Centre](https://www.scilifelab.se/data/) and ReSA are co-hosting this workshop in Uppsala, Sweden, and online. + + + ### Funding organisations that have engaged in the Funders Forum: + + - Alfred P. Sloan Foundation + - Aligning Science Across Parkinson's (ASAP) + - Amazon Web Services (AWS) + - Astera Institute + - Australian Research Data Commons (ARDC) + - Austrian Science Fund + - Biotechnology and Biological Sciences Research Council (BBSRC) + - Cancer Research UK + - Chan Zuckerberg Initiative (CZI) + - Department of Energy (DOE) + - Digital Research Alliance of Canada + - Dutch Research Council (NWO) + - Ecuadorian Corporation for the Development of Research and Academy (CEDIA) + - Engineering and Physical Sciences Research Council (EPSRC) + - European Commission + - French Committee for Open Science + - German Research Foundation (DFG) + - Institute of Museum and Library Services (IMLS) + - Japan Agency for Medical Research and Development (AMED) + - Japan Science and Technology Agency (JST) + - Kavli Foundation + - Klaus Tschira Foundation + - Linux Foundation + - Medical Research Council (UKRI) + - Michael J. Fox Foundation + - Microsoft + - National Aeronautics and Space Administration (NASA) + - National Institutes of Health (NIH) + - National Science Foundation (NSF) + - National Science and Technology Council + - Netherlands eScience Center (NLeSC) + - New Zealand eScience Infrastructure (NeSI) + - Nordic eInfrastructure Collaboration (NeIC) + - Oracle for Research + - Sage Publishing + - SΓ£o Paulo Research Foundation (FAPESP) + - Schmidt Sciences + - Science for Africa Foundation + - SciLifeLab + - Social Sciences and Humanities Research Council (SSHRC) + - Sovereign Tech Fund + - Swedish Research Council + - The Navigation Fund + - UEFISCDI + - UK Research and Innovation (UKRI) + - Volkswagen Foundation + - Wellcome Trust + - ZonMw + + See also ReSA's [Research Software Funding Opportunities](/resource/funding-opportunities/) to find funding opportunities or contribute information on [new calls](https://docs.google.com/forms/d/e/1FAIpQLSdeZrx0kXAhD4XfpDrQ8Dmg4qJTRZWboMd-zvgjjtgBs1I68g/viewform). + +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- \ No newline at end of file diff --git a/content/forums/mars-forum/_index.md b/content/forums/mars-forum/_index.md new file mode 100644 index 00000000..a657a80d --- /dev/null +++ b/content/forums/mars-forum/_index.md @@ -0,0 +1,69 @@ +--- +title: +date: 2025-05-15 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Metascience and Research Software (MaRS) Forum + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + - block: markdown + content: + title: + text: | + +
+
+ + The Metascience and Research Software (MaRS) Forum is a collaboration of metascience groups, communities, and organisations committed to supporting research software, and those who develop it, as fundamental and vital to research. Research software metascience aims to understand implications of research software on the research ecosystem, particularly on the research process, and could include: + + - The impact of research software policy or funding on the research ecosystem (e.g., representation, carbon budgets) + - The impact of research software and associated factors (e.g., training, careers) on the research ecosystem + - The impact of research software disruptors (e.g., AI coding assistants,) on the research ecosystem + + Software has become an essential constituent of research and research software is starting to be seen as an equal partner of research data in key international policy documents such as UNESCO and the OECD. However, support and recognition of the importance of research software and the people who develop and maintain it, has failed to keep pace with the scale of use of research software in research. + + The MaRS Forum provides a formal mechanism for members to share practices and consider how to individually and collectively address common challenges to achieve the significant cultural change needed across the research sector globally. It aims to address topics such as: + + - Landscape analysis of existing metascience on research software, to identify opportunities for consolidation, and gaps that need filling + - Approaches to creating research software as a research area + - Increasing awareness of research on research software + - Metascience publishing opportunities (or lack thereof) + + For further information, please refer to the [**Terms of Reference**](https://docs.google.com/document/d/1_B0jmASpDKTcWvNGy7liOYcaTvKkOsgBUR_vBQ4CYq8/edit?usp=sharing). + + Membership is open to stakeholders that conduct research to understand implications of research software on the research ecosystem, particularly on the research process. + + Examples of/types: + - Research software metascience groups (e.g., International Research Software Engineering Research (IRSER)) + - Research software communities that undertake metascience (e.g., Software Sustainability Institute) + - Broader metascience organisations (e.g., Research on Research Institute (RoRI)) + + Members can suggest other organisations that support research software metascience to join, or potential participants can contact [ReSA](mailto:info@researchsoft.org) for information on joining. + +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] +--- \ No newline at end of file diff --git a/content/forums/pubsoft-forum/_index.md b/content/forums/pubsoft-forum/_index.md new file mode 100644 index 00000000..02f1338e --- /dev/null +++ b/content/forums/pubsoft-forum/_index.md @@ -0,0 +1,69 @@ +--- +title: +date: 2025-05-15 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Publishing Research Software (PubSoft) Forum + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + + - block: markdown + content: + title: + text: | + +
+
+ + The Publishing Research Software (PubSoft) Forum is a collaboration of publishers committed to supporting research software, and those who develop it, as fundamental and vital to research. Publishers are organisations/initiatives that share academic research and scholarship. This includes both traditional publishers that publish text and/or software papers. + + Software has become an essential constituent of research and research software is starting to be seen as an equal partner of research data in key international policy documents such as UNESCO and the OECD. However, support and recognition of the importance of research software and the people who develop and maintain it, has failed to keep pace with the scale of use of research software in research. + + The PubSoft Forum provides a formal mechanism for members to share practices and consider how to individually and collectively address common challenges to achieve the significant cultural change needed across the research sector globally. It aims to address topics such as: + + - Policy alignment + - Policy implementation + - Incentives and enforcements to support researcher citation of research software + - Audit of current publisher practices to improve research software metadata quality and quality of software records, to work towards standardisation + - Consistent approaches to monitoring, benchmarking and measuring progress + - Alignment with broader efforts to improve citation of other digital objects + + For further information, please refer to the [**Terms of Reference**](https://docs.google.com/document/d/1LtuVSJ4cZzvlMivlb7tdAafBKSaHMdJWEmfg-OrLV2A/edit?usp=sharing). + + Membership is open to any publishers that share academic research and scholarship, including both traditional publishers that publish text and/or software papers. + + Examples of/types: + - Traditional academic journals (e.g., F1000, PLOS, Taylor & Francis, IEEE) + - Disciplinary academic journals (e.g., American Geophysical Union (AGU)) + - Publisher consortia (e.g., STM Association) + + Members can suggest other organisations that support research software publishing to join, or potential participants can contact [ReSA](mailto:info@researchsoft.org) for information on joining. + +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- \ No newline at end of file diff --git a/content/forums/rsi-forum/_index.md b/content/forums/rsi-forum/_index.md new file mode 100644 index 00000000..7b648e97 --- /dev/null +++ b/content/forums/rsi-forum/_index.md @@ -0,0 +1,67 @@ +--- +title: +date: 2025-05-22 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Research Software Infrastructure (RSI) Forum + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + + - block: markdown + content: + title: + text: | + +
+
+ + The Research Software Infrastructure (RSI) Forum is a collaboration of infrastructure organisations committed to supporting research software, and those who develop it, as fundamental and vital to research. Infrastructure organisations are organisations that support research software development, maintenance, sharing, connectivity, etc., often through services. + + Software is an [essential constituent](https://doi.org/10.1038/s43588-024-00651-2) of research, and research software is recognised as a crucial part of open science in key international policy documents from [UNESCO](https://en.unesco.org/science-sustainable-future/open-science/recommendation) and the [OECD](https://www.oecd.org/en/publications/oecd-principles-and-guidelines-for-access-to-research-data-from-public-funding_9789264034020-en-fr.html). However, some aspects of infrastructure have failed to keep pace with the scale of use of research software in research. Infrastructure that supports research software can play a key role in improving research impact. Increased focus on alignment can provide societal benefits that include accelerating innovation, reducing information-sharing gaps, encouraging innovation, and promoting reproducibility. + + The RSI Forum provides a formal mechanism for members to share practices and consider how to individually and collectively address common challenges to achieve the significant cultural change needed across the research sector globally. It aims to: + + - Enable collaborations between infrastructure providers that may address topics such as how to address key technical research software community challenges; achieve long-term sustainability for research software; or address social challenges such as community development. + - Increase sharing of practices for research software infrastructures, to encourage reflection and advancement. + + For further information, please refer to the [**Terms of Reference**](https://docs.google.com/document/d/1nsbAi_Uag-r2bL3-8Zy6W_UUj6FXzdNB5-OxQUm8fv8/edit) + + Membership is open to any infrastructure organisation that serves research software and that seeks to help identify and resolve gaps and points of friction in using infrastructures in various research software use cases. This includes: + + - Software forges (e.g., GitHub, GitLab) + - Software registries and repositories (e.g., Zenodo, SciCodes) + - Software journals (e.g., Journal of Open Source Software (JOSS), Journal of Research Software (JORS)) + - Software sustainability organisations (e.g., Software Sustainability Institute) + - Software preservation organisations (e.g., Software Heritage) + - Organisations and initiatives that create standards (e.g., CITATION.cff, FAIR-Impact, CodeMeta). + + Members can invite other organisations that provide infrastructure to research software to join at their own discretion, or potential participants can contact [ReSA](mailto:info@researchsoft.org) for information on joining. + +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- \ No newline at end of file diff --git a/content/forums/rsp-forum/_index.md b/content/forums/rsp-forum/_index.md new file mode 100644 index 00000000..fbe95aaa --- /dev/null +++ b/content/forums/rsp-forum/_index.md @@ -0,0 +1,69 @@ +--- +title: +date: 2025-05-15 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Research Software Policy (RSP) Forum + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + + - block: markdown + content: + title: + text: | + +
+
+ + The Research Software Policy (RSP) Forum is a collaboration of policymakers committed to supporting research software, and those who develop it, as fundamental and vital to research. Policy makers include representatives of organisations focused on research, open science, and open source software, that influence policy at the national, regional, and/or international level. + + Software has become an essential constituent of research and research software is starting to be seen as an equal partner of research data in key international policy documents such as UNESCO and the OECD. However, support and recognition of the importance of research software and the people who develop and maintain it, has failed to keep pace with the scale of use of research software in research. + + The RSP Forum provides a formal mechanism for members to share practices and consider how to individually and collectively address common challenges to achieve the significant cultural change needed across the research sector globally. It aims to address topics such as: + + - Best practices in policy development and implementation to support research software (within broader policies and/or through targeted policies) + - Policy alignment across national boundaries + - Case studies of how national policy makers are affecting (state) legislation for universities in their own country (where relevant) to change employment conditions for research software engineers + - Integration with broader policies for research, open science, open source software, etc. + - Opportunities provided by open source program offices (OSPOs) + - Consistent approaches to monitoring, benchmarking and measuring progress + + For further information, please refer to the [**Terms of Reference**](https://docs.google.com/document/d/1aLviSA4yUPGHvJMhnFZZQzHCxO2GZt7FcHMwiK8pX-c/edit?usp=sharing). + + Membership is open to any policymakers that focus on research, open science, and open source software, and influence policy at the national, regional, and/or international level. + + Examples of/types: + - International and national government policy units (e.g., OECD, Japan Science and Technology Agency (JST)) + - Regional initiatives focused on research software with a policy element (e.g., EVERSE) + - Funding and/or research organisation consortia (e.g., Science Europe, LA Referencia) + + Members can suggest other organisations that support research software policy to join, or potential participants can contact [ReSA](mailto:info@researchsoft.org) for information on joining. + +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- \ No newline at end of file diff --git a/content/forums/stars-forum/_index.md b/content/forums/stars-forum/_index.md new file mode 100644 index 00000000..d6010ec9 --- /dev/null +++ b/content/forums/stars-forum/_index.md @@ -0,0 +1,67 @@ +--- +title: +date: 2025-05-15 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Skills and Training for Research Software (STaRS) Forum + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + - block: markdown + content: + title: + text: | + +
+
+ + The Skills and Training for Research Software (STaRS) Forum is a collaboration of skills and training organisations committed to supporting research software, and those who develop it, as fundamental and vital to research. Skills and training organisations/initiatives are those efforts that develop curricula and learning pathways that support research software development, primarily at international, national, and/or disciplinary levels. + + Software has become an essential constituent of research and research software is starting to be seen as an equal partner of research data in key international policy documents such as UNESCO and the OECD. However, support and recognition of the importance of research software and the people who develop and maintain it, has failed to keep pace with the scale of use of research software in research. + + The STaRS Forum provides a formal mechanism for members to share practices and consider how to individually and collectively address common challenges to achieve the significant cultural change needed across the research sector globally. It aims to address topics such as: + + - Mapping of current offerings + - Sharing of best practices in curriculum design + - Sharing material and collaborative curriculum design + - Approaches to demonstrating need and impact + - Integration into broader research/open science/open source software training initiatives + + For further information, please refer to the [**Terms of Reference**](https://docs.google.com/document/d/12d27O1DqvDxAQjtnt9IdpDBlP6hMYO5bAbPd0S0a-w0/edit?usp=sharing). + + Membership is open to any skills and training organisations/initiatives that focus on developing curricula and learning pathways to support the development of research software. + + Examples of/types: + + - International research software training initiatives (e.g., Code Refinery, rOpenSci, PyOpenSci) + - National research software training initiatives (e.g., US-RSE and de-RSE working groups on this) + - Broader international initiatives for a range of digital skills (e.g., The Carpentries, SKILLS4EOSC, CODATA-RDA School of Research Data Science, Turing Way) + + Members can suggest other organisations that support research software skills and training to join, or potential participants can contact [ReSA](mailto:info@researchsoft.org) for information on joining. + +
+
+ design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- \ No newline at end of file diff --git a/content/funders-forum/10-forum-header/index.md b/content/funders-forum/10-forum-header/index.md deleted file mode 100644 index ec9b5b91..00000000 --- a/content/funders-forum/10-forum-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2020-12-04" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Research Software Funders Forum" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/funders-forum/20-content.md b/content/funders-forum/20-content.md deleted file mode 100644 index e00a9666..00000000 --- a/content/funders-forum/20-content.md +++ /dev/null @@ -1,90 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2021-12-04" -weight = 20 -background = "white" -+++ - -The Research Software Funders Forum is a collaboration of funding organisations committed to supporting research software, and those who develop it, as fundamental and vital to research. It provides a formal mechanism for funders to share practices and consider how to address common challenges to achieve the significant cultural change needed across the research sector globally. For further information, please refer to the [Terms of Reference](https://docs.google.com/document/d/1UHnEAMmZI9glkqoT8Mx36A15xJqupdUmp_qBFCwY0rI/edit) and this ReSA blog post: [Funder community focuses on crucial role of research software](https://www.researchsoft.org/blog/2024-06-20/) - -Software has become an [essential constituent](https://zenodo.org/record/3884311) of research and research software is starting to be seen as an equal partner of research data in key international policy documents such as [UNESCO](https://en.unesco.org/science-sustainable-future/open-science/recommendation) and the [OECD](https://www.oecd.org/en/publications/oecd-principles-and-guidelines-for-access-to-research-data-from-public-funding_9789264034020-en-fr.html). However, support and recognition of the importance of research software and the people who develop and maintain it, has failed to keep pace with the scale of use of research software in research. - -Funders can play a key role in changing practices in the research sector, and an increasing number of funders are now supporting the advancement of research software. Increased focus on research software can provide societal benefits that include accelerating innovation, reducing information-sharing gaps, encouraging innovation, and promoting reproducibility. - -The Research Software Funders Forum aims to provide a formal mechanism to increase: - -- Sharing of funding practices for research software and the people that develop and maintain it, and learning about those practices, to encourage reflection and advancement. -- Consideration of how to address key research software community challenges, both technical and social to achieve the significant cultural change needed across the research sector globally. -- Expansion of networks to increase sense of community and identification of collaboration opportunities. -- Consideration of opportunities to achieve long-term sustainability for research software, especially those that are part of key global infrastructures. - -Membership is open to any initiative that funds research software. To join please contact [info@researchsoft.org](mailto:info@researchsoft.org). - -### ADORE.software - -The [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/) (ADORE.software) represents a first step to formalise, on a global level, the basic principles and recommendations related to funding the sustainability of research software, including the people needed to achieve this goal. ADORE.software’s complementary [toolkit](https://adore.software/toolkit/) provides examples of programs, policies, and resources for each of the Declaration’s recommendations in the four areas of research software practice, research software ecosystem, research software personnel, and research software ethics. - -### International Research Software Funders Workshops - -Since 2022, the Funders Forum has convened annual global gatherings of research software funders. - -([2022](https://adore.software/2023/03/international-funders-workshop-the-future-of-research-software/)) International Funders Workshop: The Future of Research Software. The [Netherlands eScience Center](https://www.esciencecenter.nl/) and ReSA co-hosted this workshop in Amsterdam, the Netherlands. See the [blog post](https://www.researchsoft.org/blog/2022-11/) and [report](https://zenodo.org/records/7384410#.Y4k4VexBw3E). Prior to the workshop, the [Australian Research Data Commons (ARDC)](https://ardc.edu.au/) and ReSA co-hosted a workshop on [research software visibility](https://future-of-research-software.org/pre-workshop/). Slides from the pre-workshop event are available via ReSA’s [Zenodo community](https://zenodo.org/communities/resa/records?q=&l=list&p=1&s=10). - -([2023](https://adore.software/international-research-software-funders-workshop/)) International Research Software Funders Workshop - Investing in People: Anticipating the Future of Research Software. The [Digital Research Alliance of Canada](https://alliancecan.ca/en) and ReSA co-hosted this workshop in Montreal, Canada, and online. See the [blog post](https://www.researchsoft.org/blog/2023-10/) and [report](https://zenodo.org/records/10552116). Prior to this workshop, ReSA delivered a half-day session on [How to Explicitly Support Research Software as Part of Your Funding Program](https://docs.google.com/presentation/d/1UP_UGOPxYi0R4UAE5PRpGWoJzrQ2FkVmCdDBILR6t2U/edit#slide=id.g241153165a8_0_0). There was also a half-day session on [CiteSoftware](https://zenodo.org/records/8356278), led by a group of stakeholders aiming to drive the adoption of a common research software preservation and citation guidance resource for the research community. - -([2024](https://adore.software/2024-international-research-software-funders-workshop/)) International Research Software Funders Workshop: Towards a monitoring framework to benchmark the ADORE.software recommendations and improve the sustainability of research software. The [SciLifeLab](https://www.scilifelab.se/) [Data Centre](https://www.scilifelab.se/data/) and ReSA are co-hosting this workshop in Uppsala, Sweden, and online. - - -### Funding organisations that have engaged in the Funders Forum: - -- Alfred P. Sloan Foundation -- Aligning Science Across Parkinson's (ASAP) -- Amazon Web Services (AWS) -- Astera Institute -- Australian Research Data Commons (ARDC) -- Austrian Science Fund -- Biotechnology and Biological Sciences Research Council (BBSRC) -- Cancer Research UK -- Chan Zuckerberg Initiative (CZI) -- Department of Energy (DOE) -- Digital Research Alliance of Canada -- Dutch Research Council (NWO) -- Ecuadorian Corporation for the Development of Research and Academy (CEDIA) -- Engineering and Physical Sciences Research Council (EPSRC) -- European Commission -- French Committee for Open Science -- German Research Foundation (DFG) -- Institute of Museum and Library Services (IMLS) -- Japan Agency for Medical Research and Development (AMED) -- Japan Science and Technology Agency (JST) -- Kavli Foundation -- Klaus Tschira Foundation -- Linux Foundation -- Medical Research Council (UKRI) -- Michael J. Fox Foundation -- Microsoft -- National Aeronautics and Space Administration (NASA) -- National Institutes of Health (NIH) -- National Science Foundation (NSF) -- National Science and Technology Council -- Netherlands eScience Center (NLeSC) -- New Zealand eScience Infrastructure (NeSI) -- Nordic eInfrastructure Collaboration (NeIC) -- Oracle for Research -- Sage Publishing -- SΓ£o Paulo Research Foundation (FAPESP) -- Schmidt Sciences -- Science for Africa Foundation -- SciLifeLab -- Social Sciences and Humanities Research Council (SSHRC) -- Sovereign Tech Fund -- Swedish Research Council -- The Navigation Fund -- UEFISCDI -- UK Research and Innovation (UKRI) -- Volkswagen Foundation -- Wellcome Trust -- ZonMw - -See also ReSA's [Research Software Funding Opportunities](https://www.researchsoft.org/funding-opportunities/) to find funding opportunities or contribute information on [new calls](https://docs.google.com/forms/d/e/1FAIpQLSdeZrx0kXAhD4XfpDrQ8Dmg4qJTRZWboMd-zvgjjtgBs1I68g/viewform). diff --git a/content/funders-forum/index.md b/content/funders-forum/index.md deleted file mode 100644 index 00d03c58..00000000 --- a/content/funders-forum/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Research Software Funders Forum" -date = "2021-12-04" -+++ diff --git a/content/funding-opportunities/20-content.md b/content/funding-opportunities/20-content.md deleted file mode 100644 index 220a22ff..00000000 --- a/content/funding-opportunities/20-content.md +++ /dev/null @@ -1,20 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2022-10-21" -weight = 20 -background = "white" -+++ - -# Research Software Funding Opportunities - -ReSA has created this public database of current and past research software funding opportunities to improve the findability of this important information. Members of the community can add current funding opportunities via this **[short form](https://forms.gle/r4Jw4swUd1SXigZc9)**. Funding opportunities are also posted in our [newsletter](https://www.researchsoft.org/news/), on [Mastodon](https://fosstodon.org/@researchsoft), [Twitter](https://twitter.com/researchsoft) and [Slack](https://researchsoft.slack.com/). - -This database focuses on funding calls or programs that are **targeted at research software** and/or those who develop and maintain it (such as research software engineers). The database does not include broader funding calls for which research software is one of many options for investment, such as research projects in general, open science, open infrastructure, etc. - -
-
- - - -*Please note that the information in this database may not be accurate or up to date. diff --git a/content/funding-opportunities/25-heading-current.md b/content/funding-opportunities/25-heading-current.md deleted file mode 100644 index 557fe2f9..00000000 --- a/content/funding-opportunities/25-heading-current.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -fragment = "content" -disabled = true -date = "2022-10-21" -weight = 25 -background = "white" -+++ - -## Current Funding Opportunities for Research Software - -Collection of current research software funding opportunities, ordered by deadline. diff --git a/content/funding-opportunities/30-current.md b/content/funding-opportunities/30-current.md deleted file mode 100644 index a590f89d..00000000 --- a/content/funding-opportunities/30-current.md +++ /dev/null @@ -1,19 +0,0 @@ -+++ -fragment = "content" -disabled = true -date = "2022-10-21" -weight = 30 -background = "white" -+++ - - - - -| Funder name | Name of the call or program and URL | Deadline | Aims and Eligibility | Keywords | -| ----------- | ----------------------------------- | -------- | -------------------- | -------- | diff --git a/content/funding-opportunities/38-past-heading.md b/content/funding-opportunities/38-past-heading.md deleted file mode 100644 index db60389f..00000000 --- a/content/funding-opportunities/38-past-heading.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -fragment = "content" -disabled = true -date = "2022-10-21" -weight = 38 -background = "white" -+++ - -## Past Funding Opportunities for Research Software - -Collection of past opportunities for research software funding, ordered by deadline. diff --git a/content/funding-opportunities/40-past.md b/content/funding-opportunities/40-past.md deleted file mode 100644 index a81f56b1..00000000 --- a/content/funding-opportunities/40-past.md +++ /dev/null @@ -1,19 +0,0 @@ -+++ -fragment = "content" -disabled = true -date = "2022-10-21" -weight = 40 -background = "white" -+++ - - -| Funder name | Name of the call or program and URL | Deadline | Aims and Eligibility | Keywords | -| --------------------------- | ------------------------------------------------------------------------------------------------------ | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------- | -| [rOpenSci](ropensci.org) | [The rOpenSci Champion Program pilot](https://ropensci.org/blog/2022/09/22/launch-champions-program/) | 2022/11/07 | This call aims to identify, recognise, and reward passionate members of the R community, including people who belong to groups that are historically and systematically excluded. This is a 12-month program. | Mentoring, training | -| More past calls coming soon | diff --git a/content/funding-opportunities/ReSA_Funding_Current_opportunities.csv b/content/funding-opportunities/ReSA_Funding_Current_opportunities.csv deleted file mode 100644 index fcf1addb..00000000 --- a/content/funding-opportunities/ReSA_Funding_Current_opportunities.csv +++ /dev/null @@ -1 +0,0 @@ -Funder name,Name of the call or program and URL,Deadline,Aims and Eligibility,Keywords diff --git a/content/funding-opportunities/ReSA_Funding_Past_opportunities.csv b/content/funding-opportunities/ReSA_Funding_Past_opportunities.csv deleted file mode 100644 index fa06e9d8..00000000 --- a/content/funding-opportunities/ReSA_Funding_Past_opportunities.csv +++ /dev/null @@ -1 +0,0 @@ -Funder name,Name of the call or program and URL,Deadline,Aims and Eligibility,Keywords diff --git a/content/funding-opportunities/index.md b/content/funding-opportunities/index.md deleted file mode 100644 index 70c75fa0..00000000 --- a/content/funding-opportunities/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Funding Opportunities" -date = "2022-10-21" -+++ diff --git a/content/funding-opportunities/templates/30-current.md b/content/funding-opportunities/templates/30-current.md deleted file mode 100644 index 0b9e1586..00000000 --- a/content/funding-opportunities/templates/30-current.md +++ /dev/null @@ -1,18 +0,0 @@ -+++ -fragment = "content" -disabled = true -date = "2022-10-21" -weight = 30 -background = "white" -+++ - - - - -${{ env.TABLE_VAR }} diff --git a/content/funding-opportunities/templates/40-past.md b/content/funding-opportunities/templates/40-past.md deleted file mode 100644 index 7dee90ef..00000000 --- a/content/funding-opportunities/templates/40-past.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "content" -disabled = true -date = "2022-10-21" -weight = 40 -background = "white" -+++ - - -${{ env.TABLE_VAR }} diff --git a/content/governance/SC/anne.md b/content/governance/SC/anne.md deleted file mode 100644 index 8d279002..00000000 --- a/content/governance/SC/anne.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -title = "Anne Fouilloux" -date = "2023-04-25" -weight = 41 - -position = "Senior Research Engineer at Simula Research Laboratory" -lives_in = "Norway" - -[asset] - image = "anne.jpg" - text = "Anne Fouilloux" -+++ - -Anne is an Open Science and FAIR Software and Data Advocate. She is working at Simula Research Laboratory (Oslo, Norway) and is leading the Nordic Infrastructure Collaboration on Earth System Tools (NICEST) at the Nordic e-infrastructure Collaboration (NeIC). She never works alone, always in collaboration with community driven initiatives and open source communities such as Pangeo, The Environmental Data Science Book, The Turing Way and the Galaxy Project. - -She is developing training materials and teaching basic-to-advanced research computing skills to students, researchers, Research Software Engineers from all disciplines to advance FAIRness of Software management and development practices so that research groups can collaboratively develop, review, discuss, test, share and reuse their codes. diff --git a/content/governance/SC/caxton.md b/content/governance/SC/caxton.md deleted file mode 100644 index 86ab4339..00000000 --- a/content/governance/SC/caxton.md +++ /dev/null @@ -1,14 +0,0 @@ -+++ -title = "Caxton Murira" -date = "2023-04-25" -weight = 42 - -position = "Product Specialist, Team Lead, Clinical Research and Trials Community (CRTC) programme at the Science for Africa Foundation" -lives_in = "Kenya" - -[asset] - image = "caxton.jpg" - text = "Caxton Murira" -+++ - -Caxton Murira is a Product Specialist and team lead for the [Clinical Research and Trials Community (CRTC) programme](https://scienceforafrica.foundation/clinical-research-and-trials-community) at the [Science for Africa Foundation](https://scienceforafrica.foundation/). He is passionate about data and has delivered successful projects in a myriad of sectors such as health, governance, climate change for INGOs, government and public institutions. Caxton has an MSc in project management and a BSc in computer science. Prior to joining SFA Foundation, he worked at the African Academy of Sciences and other not for profit outfits in similar roles. Caxton is keen to promote open research initiatives, open data, and research software, with the goal of achieving fair access to healthcare and creating sustainable innovative solutions that address Africa's most pressing challenges. diff --git a/content/governance/SC/dan.md b/content/governance/SC/dan.md deleted file mode 100644 index ef70e068..00000000 --- a/content/governance/SC/dan.md +++ /dev/null @@ -1,15 +0,0 @@ -+++ -title = "Chair: Daniel S. Katz" -date = "2023-04-25" -weight = 40 - -position = "Chief Scientist, National Center for Supercomputing Applications (NCSA), University of Illinois" -lives_in = "USA" - - -[asset] - image = "dan.jpg" - text = "Daniel S. Katz" -+++ - -Daniel S. Katz is Chief Scientist at the National Center for Supercomputing Applications (NCSA), and Research Associate Professor in Computer Science, Electrical and Computer Engineering, and the School of Information Sciences (iSchool) at the University of Illinois Urbana-Champaign. He was previously a Senior Fellow at the University of Chicago and Argonne National Laboratory, a Program Director at the National Science Foundation, and had roles at Louisiana State University, NASA JPL, and Cray Research. Dan's interest is in the development and use of advanced cyberinfrastructure to solve challenging problems at multiple scales, including applications, algorithms, fault tolerance, and programming in parallel and distributed computing, and policy issues such as citation and credit mechanisms and practices associated with software and data, organization and community practices for collaboration, and career paths for computing researchers. He is a senior member of the IEEE and ACM, co-founder and current Associate Editor-in-Chief of the [Journal of Open Source Software](https://joss.theoj.org/), and co-founder of the [US Research Software Engineer Association (US-RSE)](https://us-rse.org/). diff --git a/content/governance/SC/index.md b/content/governance/SC/index.md deleted file mode 100644 index 847f0590..00000000 --- a/content/governance/SC/index.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -fragment = "member" -date = "2023-04-05" -weight = 30 -background = "white" - -title = "ReSA Steering Committee" -title_align = "center" # Default is center, can be left, right or center -+++ diff --git a/content/governance/SC/juan.jpg b/content/governance/SC/juan.jpg deleted file mode 100644 index 6abe3bd8..00000000 Binary files a/content/governance/SC/juan.jpg and /dev/null differ diff --git a/content/governance/SC/juan.md b/content/governance/SC/juan.md deleted file mode 100644 index 1490a426..00000000 --- a/content/governance/SC/juan.md +++ /dev/null @@ -1,14 +0,0 @@ -+++ -title = "Juan Bicarregui" -date = "2023-05-10" -weight = 43 - -position = "Head of the Data Division, Science and Technology Facilities Council (STFC)" -lives_in = "UK" - -[asset] - image = "juan.jpg" - text = "Juan Bicarregui" -+++ - -​​​Juan Bicarregui is Head of the Data Division in the Scientific Computing Department at STFC. Juan’s division has responsibility for research and development of the data systems that handle much of the huge volume of scientific data that is produced by the STFC research facilities. Juan has played a key role in formulating UK policy on opening up access to research outputs and chaired the cross Research Council group which published the RCUK Joint Principles on Data and associated Guidelines. Juan was a member of the steering group that set up the Research Data Alliance and co-chaired the RDA Organisational Advisory Board. Currently, Juan is coordinator of the H2020 EOSCpilot project that is supporting the first phase in the development of the European Open Science Cloud. diff --git a/content/governance/SC/neil.md b/content/governance/SC/neil.md deleted file mode 100644 index f097379d..00000000 --- a/content/governance/SC/neil.md +++ /dev/null @@ -1,14 +0,0 @@ -+++ -title = "Neil Chue Hong" -date = "2023-05-10" -weight = 44 - -position = "Director, Software Sustainability Institute, University of Edinburgh" -lives_in = "UK" - -[asset] - image = "neil.jpg" - text = "Neil Chue Hong" -+++ - -Neil P. Chue Hong is the founding Director of the Software Sustainability Institute and Professor of Research Software Policy and Practice at EPCC, University of Edinburgh. He works to improve software sustainability, research software engineering practices, research software communities of practice, and the impact of research software policy and incentives. He has co-led development and implementation of international research software guidelines including the FAIR Principles for Research Software, Software Citation Principles, and NISO Reproducibility Badging and Definitions. He holds a number of research funder advisory roles, including chairing the steering committee for the UK’s exascale software, algorithms and infrastructure programme (ExCALIBUR) and a member of the UKRI Net Zero Digital Research Infrastructure steering committee, BBSRC Transformative Technologies strategic advisory panel, and NERC Digital Research Infrastructure Investment Board. He is the Editor-in-Chief for the Journal of Open Research Software, and co-editor of β€œSoftware Engineering for Science”. diff --git a/content/governance/SC/nicolas.md b/content/governance/SC/nicolas.md deleted file mode 100644 index ad954fb2..00000000 --- a/content/governance/SC/nicolas.md +++ /dev/null @@ -1,14 +0,0 @@ -+++ -title = "NicolΓ‘s Palopoli" -date = "2023-04-25" -weight = 45 - -position = "Adjunct Researcher, National Research Council in Argentina (CONICET)" -lives_in = "Argentina" - -[asset] - image = "nico.jpg" - text = "NicolΓ‘s Palopoli" -+++ - -NicolΓ‘s is an Adjunct Researcher at the National Research Council in Argentina (CONICET) and a Project Leader at the Structural Bioinformatics Group, Universidad Nacional de Quilmes (UNQ, Buenos Aires, Argentina). His research is focused on understanding the functional nature of proteins, with special interest in their evolutionary relationships and their interactions in biological systems. He is a certified trainer and over the last 15 years he has delivered online and virtual courses on biology, programming and education for graduate and postgraduate university students, as well as several workshops in different communities of practice. Nicolas is also the Co-Executive Director and Advisory Committee Chair of MetaDocencia, an online community that builds scientific and technical capacities through the co-creation of networks, learning spaces, and accessible resources focused on Spanish-speaking communities. diff --git a/content/governance/SC/shurui.md b/content/governance/SC/shurui.md deleted file mode 100644 index dd07b8ec..00000000 --- a/content/governance/SC/shurui.md +++ /dev/null @@ -1,14 +0,0 @@ -+++ -title = "Shurui Zhou" -date = "2023-04-25" -weight = 46 - -position = "Assistant Professor, The University of Toronto" -lives_in = "Canada" - -[asset] - image = "shurui.jpg" - text = "Shurui Zhou" -+++ - -Shurui Zhou is an Assistant Professor at the University of Toronto. Her research focuses on facilitating distributed and interdisciplinary software teams to build high-quality systems, including but not limited to building better programming environments for software developers, designing better code review and issue tracking systems to facilitate better collaboration among team members, and identifying vulnerabilities from the codebase. She studies and tackles the problems from both technical and social perspectives, especially in the context of modern open-source collaboration forms, Industrial plant software, and interdisciplinary teams when building AI-based systems or scientific software. She also investigates the collaboration challenges for hardware teams, specifically for CAD designers using online collaborative platforms. To achieve her goals, she combines advances in tooling and software engineering principles with insights from other disciplines that study human collaboration, for which she combines and mixes a wide range of research methods. diff --git a/content/governance/SCintro.md b/content/governance/SCintro.md deleted file mode 100644 index 2d65373d..00000000 --- a/content/governance/SCintro.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ -fragment = "content" -date = "2027-05-04" -weight = 20 -background = "white" -+++ - diff --git a/content/governance/index.md b/content/governance/index.md deleted file mode 100644 index f50e58c4..00000000 --- a/content/governance/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "ReSA Governance" -date = "2023-05-04" -+++ diff --git a/content/governance/previousSC.md b/content/governance/previousSC.md deleted file mode 100644 index f5d41132..00000000 --- a/content/governance/previousSC.md +++ /dev/null @@ -1,33 +0,0 @@ -+++ -fragment = "content" -date = "2023-05-04" -weight = 140 -background = "white" - -title = "Former Steering Committee Members" -+++ - - -**Yo Yehudi**, Co-founder, Open Life Science (OLS), UK (2023-2025) - -**Mark Leggott**, Director of International Relations, Digital Research Alliance of Canada (2021-2024) - -**Joris van Eijnatten**, General Director, Netherlands eScience Center; and Professor of Digital History, Utrecht University (2021-2024) - -**Eva Mendez**, Associate Professor, Universidad Carlos III de Madrid, Spain (2021 -2023) - -**Chris Mentzel**, Executive Director, Data Sciences, Stanford Data Science Initiative, Stanford University, USA (2019 - 2023) - -**Andrew Treloar**, Director, Platforms and Software, Australian Research Data Commons, Australia (2019 -2023) - -**Lou Woodley**, Director, Center for Scientific Collaboration and Community Engagement, UK (2021 - 2023) - -**Tania Allard**, Co-Director, Quansight, UK (2021) - -**Serah Njambi Rono**, Director of Community Development and Engagement, The Carpentries, Estonia (2021) - -**Karthik Ram**, Senior Research Data Scientist at University of California, Berkeley, USA (2019-2021) - -**Catherine Jones**, Energy Data Centre Lead, Science and Technologies Facilities Council, UK (2019-2020) - -**Scott Henwood**, Senior Director, Programs, CANARIE, Canada (2019) diff --git a/content/governance/staff-redirect.md b/content/governance/staff-redirect.md deleted file mode 100644 index 90ba831f..00000000 --- a/content/governance/staff-redirect.md +++ /dev/null @@ -1,13 +0,0 @@ -+++ -fragment = "content" -date = "2023-05-08" -weight = 150 -background = "white" - -title = "" -+++ - -For further information, please refer to the ReSA Steering Committee [**Terms of Reference**](https://docs.google.com/document/d/1cr6jce4TBgd0KJemYtpuK-V4CQW1ZAYlcVqnJi4ZRCg/edit?tab=t.0#heading=h.qc1uwr8o0jhl) - -To meet the ReSA team go to the [**People page**](https://www.researchsoft.org/people/). - diff --git a/content/governance/subC/Colette.jpg b/content/governance/subC/Colette.jpg deleted file mode 100644 index d0d81157..00000000 Binary files a/content/governance/subC/Colette.jpg and /dev/null differ diff --git a/content/governance/subC/colette.md b/content/governance/subC/colette.md deleted file mode 100644 index 3d250ae5..00000000 --- a/content/governance/subC/colette.md +++ /dev/null @@ -1,18 +0,0 @@ -+++ -title = "Colette Bos" -date = "2024-02-26" - -position = "Programme Director, Netherlands eScience Centre" -lives_in = "the Netherlands" -scope = [ - "**Subcomittee: ADORE.software governance**" -] - -[asset] - image = "Colette.jpg" - text = "Colette Bos" -+++ - -Colette Bos is the programme director of the Netherlands eScience Center. Her main responsibility is the call strategy and responsibility for the project portfolio. For this, she works closely with the Programme Managers. She also contributes to the general management of the eScience Center in the directors’ team and to external relations of the Netherlands eScience Center. Colette obtained her PhD at Utrecht University, with research on how scientists connect their work to large societal goals in science policy. After that, she moved to the Dutch Research Council (NWO), where she worked as a coordinator on the development of the Dutch National Research Agenda and as management board member in the European Joint Programming Initiative Urban Europe. This was followed by two years as board secretary at the Mathematics department of Utrecht University, where she contributed to strategy and policy development and implementation of the department and where she managed operational matters. - -Learn more about [ADORE.software](https://adore.software/). diff --git a/content/governance/subC/index.md b/content/governance/subC/index.md deleted file mode 100644 index 5ace967f..00000000 --- a/content/governance/subC/index.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -fragment = "member" -date = "2023-04-05" -weight = 100 -background = "white" - -title = "Chairs of ReSA Subcommittees" -title_align = "center" # Default is center, can be left, right or center -+++ diff --git a/content/governance/subC/joris.jpg b/content/governance/subC/joris.jpg deleted file mode 100644 index 85ff848c..00000000 Binary files a/content/governance/subC/joris.jpg and /dev/null differ diff --git a/content/governance/subC/mark.jpg b/content/governance/subC/mark.jpg deleted file mode 100644 index ba178a61..00000000 Binary files a/content/governance/subC/mark.jpg and /dev/null differ diff --git a/content/guidelines/10-guidelines-header/index.md b/content/guidelines/10-guidelines-header/index.md deleted file mode 100644 index b7449340..00000000 --- a/content/guidelines/10-guidelines-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2021-04-28" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Guidelines" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/guidelines/20-content.md b/content/guidelines/20-content.md deleted file mode 100644 index b231b2ec..00000000 --- a/content/guidelines/20-content.md +++ /dev/null @@ -1,172 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2021-04-28" -weight = 20 -background = "white" -+++ - -To help you identify key resources this page highlights those -relevant to each of the ReSA themes: people, policy and -infrastructure. These resources are mostly international -recommendations, reports and guidelines that emphasise best practice. - -See also the **[ADORE.software Toolkit](https://adore.software/toolkit/)**. The toolkit provides examples of funder programs, policies, and resources for each of the [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/)'s recommendations in the four areas of research software practice, research software ecosystem, research software personnel, and research software ethics. - -## People - -- [Foundational Competencies and Responsibilities of a Research Software Engineer](http://arxiv.org/abs/2311.11457) by Florian Goth et al. (2023) explores educational paths for RSEs. The authors define what an RSE is, explore different types of work RSEs undertake, and define the fundamental competencies as well as values that represent the general profile of an RSE. -- [Research Software Engineering (RSE) International Survey](https://softwaresaved.github.io/international-survey-2022/): 2022 results now available to help understand the RSE community, inform policies and create incentives that advance RSE interests, building on the 2018 and 2016 survey results. -- [Why science needs more research software engineers](https://www.nature.com/articles/d41586-022-01516-2), 2022. -- [Visibility of Research Software Engineers in research funding](https://www.software.ac.uk/blog/visibility-research-software-engineers-research-funding), 2022. The Software Sustainability Institute poses the question: is there enough awareness of this role when granting applications are developed and costed? -- [The Four Pillars of Research Software Engineering](https://ieeexplore.ieee.org/document/8994167), 2021. Cohen et al. present four elements they believe are key to providing a comprehensive and sustainable support for research software engineering: software development, community, training, and policy. - -- [Understanding Equity, Diversity and - Inclusion Challenges Within the Research Software - Community](https://www.researchgate.net/publication/350647200_Understanding_Equity_Diversity_and_Inclusion_Challenges_Within_the_Research_Software_Community), 2021. - Analysis of 2018 international RSE survey provides evidence for a lack of diversity - in the Research Software Engineers community. This paper identifies - interventions which could address challenges and highlights areas where the community is - becoming more diverse. - -- ReSA [software landscape analysis](https://doi.org/10.5281/zenodo.3699950), 2020. - identifies 50+ stakeholders in the research software community and topics of interest, e.g., preservation, RSEs, - citation, productivity, sustainability. - -- [What do we know about RSEs?](https://www.software.ac.uk/blog/2018-03-12-what-do-we-know-about-rses-results-our-international-surveys) 2018. The Software Sustainability Institute analyses results from international - surveys in 2016, 2017 and 2018 to learn more about RSEs and their work conditions. - -- [UK Research Software - Survey](https://www.software.ac.uk/blog/2014-12-04-its-impossible-conduct-research-without-software-say-7-out-10-uk-researchers), 2014. Analysis highlights the importance of software in conducting research, e.g., that 92% of academics use research software. The dataset is also available. -- [The Research Software Engineer](https://epubs.stfc.ac.uk/work/63787), 2012. Baxter et al. provide a synthesis of discussions that took place during and after the 2012 Collaborations Workshop organized by the Software Sustainability Institute in Oxford, UK. - -- [Database of Diverse Databases](https://editorsofcolor.com/diverse-databases/). Useful for finding speakers for a more equitable world - see listings for "Coding + Tech", "Tech Policy" and "Science". - - -## Policy - -- [Ten simple rules for funding scientific open source software](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1010627) by Strasser et al. provides guidance and considerations for funders and other community members interested in supporting scientific software; addressing specific issues related to software, including contributor community development, governance, and sustainability, based on experiences from the Chan Zuckerberg Initiative and Alfred P. Sloan Foundation program officers. - -- The Open Research Funders Group [Policy Clause Bank and Policy Generator](https://info.chanzuckerberg.com/e3t/Ctc/GE+113/cT9XL04/VXdH875Y98ntN92BRSZw9CKwW1zSvF_4MmrVHN6rgBr73q3pBV1-WJV7CgPRCF4WRDMg-46cW7t6Chn4NvkBKW56pN8066Z38DW6b0cxm611dv3W71WDyp7_0MTmN5JY4Zcm0gmwVH7XBN13Fg2wW6tm9Fg4l_zr1W4kf-5T8C8G-lW94xwLC6JN8fjW4vF0GJ3Pph7lW7gqtkn60fj2cW1T9Hmm7hyPYCW3QQvC_8-Lb_FW8--QtZ2HgSRsW7WpsR_20KLbRW8_zFTS98cpyxW4N0Hzm6Qx1WBW4n-_Jl70k_z2V_Jr7B51645CW5B9ty44kKmvkVvfj4k1WtJpwW8RGyr37hCYdrW8qdxwx80DxPsW6mF7Jz7gYzkrW8dM8K_2pNtzgW31g8Gr6-CxX8W5gm8K88z2HKFW7ClwK-7QCLtMW8NRTwb1Kjy-B37951) for open science policies includes a section on software code sharing. - -- [Evidence for the importance of research software](http://doi.org/10.5281/zenodo.3884311), 2020. This ReSA analysis - considers papers relating to meta-research, policy, community, education and training, research breakthroughs and specific software. - -- [ReSA Response to US RFI: Public Access to Peer-Reviewed - Scholarly Publications, Data and Code Resulting From Federally - Funded Research](http://doi.org/10.5281/zenodo.3828148), 2020. Focuses on how improving the recognition and value of research -software can increase the access to unclassified published research, digital scientific -data, and code supported by the US Government. - -- [Research software is essential for research data, so how should governments respond?](https://www.researchsoft.org/blog/2021-12/), 2021. This ReSA blog post provides an overview of the current state of international adoption of research software policies and how different countries address these, in order to lay out concrete advice and examples for national governments wishing to update their policies. - -- [Six Recommendations for implementation of FAIR practice by the FAIR - in practice task force of the European Open Science Cloud FAIR - working - group](https://doi.org/10.2777/986252), 2020. - This report analyses the state of FAIR practices within diverse research communities and FAIR-related policies in different countries and offers six practical recommendations on how FAIR can be turned into practice. It includes a separate section details FAIR practice for digital objects other - than research data. - -### International policies - -- OECD Council: In 2021 the OECD Council adopted a revised [Council Recommendation on Access to Research Data from Public Funding.](https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0347) This legal instrument was revised for the first time to include software, meaning that OECD members (which include most research-intensive countries) will have to create policy and law to implement it. This recommendation, which is known as a β€œsoft law” legal instrument, has been updated to address new technologies and policy developments. It provides policy guidance in seven areas with an expanded scope to cover not only research data, but also related metadata as well as bespoke algorithms, workflows, models, and software (including code), which are essential for their interpretation. The OECD Council recommends fostering (and requiring where appropriate) the adoption of good practice for research data and software management across the research system, promoting data and software citation in academic practice (including the development of citation standards), training a cadre of research software engineers and enabling recognition and reward of software development skills as high value added to publicly funded research and innovation. - -- UNESCO: The UNESCO [Recommendation on Open Science](https://en.unesco.org/science-sustainable-future/open-science/recommendation) was unanimously adopted by member states in 2021. This recommendation defines open scientific knowledge as "open access to scientific publications, research data, metadata, open educational resources, software, and source code and hardware that are available in the public domain or under copyright and licensed under an open licence". In particular, the recommendation argues for users to gain free access to open source software and source code in a timely and user-friendly manner, in human- and machine-readable and modifiable format, under an open licence. The source code must be included in the software release and made available on openly accessible repositories, and the chosen licence must allow modifications, derivative works and sharing under equal or compatible open terms and conditions. See also the Checklist for Universities on Implementing the UNESCO Recommendation on Open Science and other elements of the [UNESCO Open Science Toolkit](https://unesdoc.unesco.org/search/N-ff1a192d-dcf3-45b7-abb0-4f5dbed6b46e). - -#### National and regional policies and strategies - -- Australia: [Australian National Agenda for Research Software](https://ardc.edu.au/project/research-software-agenda-for-australia/), 2021. Addresses recognition of research software as a first class output of research in Australia. - -- Canada: The [Tri-Agency Research Data Management Policy](https://science.gc.ca/site/science/en/interagency-research-funding/policies-and-guidelines/research-data-management/tri-agency-research-data-management-policy) includes code deposit as a requirement, in addition to data and other outputs; and that grantees have a publicly accessible strategy to support policy around research data/software management per the Policy. - -- Finland: [Policies of open science and research](https://avointiede.fi/en/policies/policies-open-science-and-research-finland) are being drafted for four areas: culture for open scholarship, open access to scholarly publications, open access of research data and methods, and open education and open access to educational resources. - -- European Union: [Scholarly infrastructures for research software (SIRS): Report from the EOSC Executive Board Working Group (WG) Architecture Task - Force](https://op.europa.eu/en/publication-detail/-/publication/145fd0f3-3907-11eb-b27b-01aa75ed71a1/language-en), 2020. Establishes a set of recommendations to allow the European Open Science Cloud (EOSC) to include software, next to other research outputs like publications and data, in the realm of its research artifacts. This work is built upon a survey and documentation of a representative panel of current operational infrastructures across Europe, comparing their scopes and approaches. This report summarises the state of the art, identifies best practices, as well as open problems, and paves the way for federating the different approaches in view of supporting the software pillar of EOSC. - -- France: French [National Plan for Open Science](https://www.ouvrirlascience.fr/second-national-plan-for-open-science/), 2021. Places software on a par with publications and data in research and Open Science. See also the [activities](https://www.ouvrirlascience.fr/research-software-as-a-pillar-of-open-science/) of the Software College of the French National Committee on Open Science and [Opportunity Note: Encouraging a wider usage of software derived from research](https://www.ouvrirlascience.fr/opportunity-note-encouraging-a-wider-usage-of-software-derived-from-research/). - -- Italy: The [Italian National Plan for Open Science](https://www.mur.gov.it/sites/default/files/2022-06/Piano_Nazionale_per_la_Scienza_Aperta.pdf) proposes an overall vision, with specific strategies for five axes of intervention, which must interact to create an open ecosystem of publications, data, analysis tools, networked ICT infrastructures and services, evaluation and training. - -- Netherlands: The [2021 National Roadmap for Large-Scale Research Facilities](https://www.nwo.nl/en/researchprogrammes/national-roadmap-for-large-scale-research-facilities) published by the Dutch Research Council (NWO) has made FAIR, sustainable software and a software management plan conditional to receiving funding. Software is central to the funding the NWO has made available for developing β€˜digital competence centres’ as part of the national roadmap, and the NWO has set up an [open science team](https://www.nwo.nl/en/open-science) to push this agenda. - -- New Zealand: The New Zealand eScience Initiative (NeSI) are sharing how they enable research communities to truly value the contributions of research software in underpinning contemporary science in [Contributing to local & global kōrero around the value, impacts and future of Research Software](https://www.nesi.org.nz/news/2022/11/contributing-local-global-k%C5%8Drero-around-value-impacts-and-future-research-software). - -- United Kingdom: The Government Office for Science’s report on [Large-scale computing: the case for greater UK coordination](https://www.gov.uk/government/news/coordinating-the-uks-large-scale-computing-ecosystem) recognises that β€œhigh-quality software is fundamental to realising the benefits of investments in computing” and recommends β€œsoftware development must keep pace with advances in hardware”. Recent reviews commissioned by individual research funders have echoed this including, BBSRC’s [Review of Data Intensive Bioscience](https://www.ukri.org/news/bbsrc-publishes-review-of-data-intensive-bioscience/). - -- USA: Major programs include the National Science Foundation (NSF)’s [Cyberinfrastructure for Sustained Scientific Innovation](https://www.nsf.gov/publications/pub_summ.jsp?ods_key=nsf21617) (CSSI) program and the Department of Energy’s (DoE) support for the [Interoperable Design of Extreme-scale Application Software](https://ideas-productivity.org/) (IDEAS) projects, as well as other significant software investments in its [Exascale Computing Project](https://www.exascaleproject.org/). - -### Research institution policies - -ReSA is creating a listing of [institutional policies that support research software](https://www.researchsoft.org/software-policies/) in a range of organisations - please add to this or join the [task force](https://www.researchsoft.org/taskforces/) undertaking this work. - -## Infrastructure - -#### Software development - -- [Making Biomedical Research Software FAIR: Actionable Step-by-step Guidelines with a User-support Tool](https://doi.org/10.1038/s41597-023-02463-x), 2023. - -- [FAIR Principles for Research Software](https://doi.org/10.15497/RDA00068), 2022, introduced in this [article](https://www.nature.com/articles/s41597-022-01710-x) in *Scientific Data*. - -- [Practical Guide to Software Management Plans](https://zenodo.org/record/7185371) by the Dutch Research Council (NWO) and the Netherlands eScience Center, 2022. - -- [Nine Best Practices for Research Software Registries and - Repositories: A Concise Guide](https://arxiv.org/abs/2012.13117), 2020. These resources improve software - discoverability and research transparency, thereby supporting - research reproducibility and replicability. - -- [What does Research Software look like?](https://zenodo.org/records/7347700#.ZDgwtezMI1I), by Rob van Nieuwpoort, 2022. - -- "Research Software Sharing for Data Analysis" chapter of [RDA COVID-19 Guidelines and Recommendations](https://doi.org/10.15497/rda00052), 2020. Provides foundational, clear and practical recommendations around research software principles and practices, in order to facilitate open collaborations. - -- [Software development guide](https://guide.esciencecenter.nl) by Netherlands eScience Center. - -- [DLR Software Engineering Guidelines](https://doi.org/10.5281/zenodo.1344612), 2018. - -- [4 Open Source Software - Recommendations](https://softdev4research.github.io/4OSS-lesson/), 2018. - -- [Top 10 FAIR Data & Software Things: Research Software](https://librarycarpentry.org/Top-10-FAIR/2018/12/01/research-software/), 2018. - -- [Good enough practices in scientific computing](https://doi.org/10.1371/journal.pcbi.1005510), 2017. - -- [Data and Software Management Plans must be public and should be machine-readable](https://danielskatzblog.wordpress.com/2016/04/13/data-and-software-management-plans-must-be-public-and-should-be-machine-readable/), by Daniel S. Katz, 2016. - - -#### Software sharing and citation - -- [CHORUS Software Citation Policies Index](https://www.chorusaccess.org/resources/software-citation-policies-index/) provides assistance to authors and publishers. - -- [New data reveals the hidden impact of open source in science](https://medium.com/czi-technology/new-data-reveals-the-hidden-impact-of-open-source-in-science-11cc4a16fea2), 2022. - -- UK National Institutes of Health [Best Practices for Sharing Research Software](https://datascience.nih.gov/tools-and-analytics/best-practices-for-sharing-research-software-faq), 2021. - -- [Recognizing the value of software: A software citation guide](https://doi.org/10.12688/f1000research.26932.2), 2021. - -- [Software Citation Checklist for Authors](http://doi.org/10.5281/zenodo.3479199), 2019. - -- [Software Citation Checklist for Developers](http://doi.org/10.5281/zenodo.3482769), 2019. - -- [Software citation principles](https://doi.org/10.7717/peerj-cs.86), 2016. - -## Lists of resources - -- [Software Heritage](https://www.softwareheritage.org) [General Index of Software Engineering Papers](https://doi.org/10.48550/arXiv.2204.03254) enables the review of outputs of software engineering, 2022. - -- [SSI guides for everything](https://www.software.ac.uk/resources/guides). Guides for researchers, managers, developers, instructors and - content distributors. - -- [SSI list of resources about various topics](https://www.software.ac.uk/resource-hub). Includes policy, - journals, open access, reproducibility, RSEs, training, etc. - - -- [Better Scientific Software (BSSw)](https://bssw.io/items?page=1&view=all). Resources for developer productivity and software sustainability. - -- [Research Software Engineers International](https://researchsoftware.org/). Includes a list of national/multinational RSE associations. - -## Do you have resources to add? - -- Submit a new resource as an issue via - [*GitHub*](https://github.com/researchsoft/website/issues/new) - (requires a GitHub account) -- [Email it directly to ReSA](mailto:info@researchsoft.org). diff --git a/content/guidelines/30-quote-saranjeet.md b/content/guidelines/30-quote-saranjeet.md deleted file mode 100644 index 05b35aa3..00000000 --- a/content/guidelines/30-quote-saranjeet.md +++ /dev/null @@ -1,15 +0,0 @@ -+++ -fragment = "buttons" -#disabled = false -date = "2023-01-19" -weight = 30 -background = "secondary" - -title = "To increase research impact and recognise the role that software plays in it, it is critical to build the Research Software Engineering community and profession in all geographic regions, while also fostering global collaborations." -#subtitle = "" - -[[buttons]] - text = "Saranjeet Kaur Bhogal, Fellow 2023, Software Sustainability Institute, India" - url = "https://fellows.software.ac.uk/fellow/saranjeet-kaur-bhogal/" - color = "link" -+++ diff --git a/content/guidelines/index.md b/content/guidelines/index.md deleted file mode 100644 index 582293f1..00000000 --- a/content/guidelines/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Guidelines" -date = "2021-04-28" -+++ diff --git a/content/institutional-policies/_index.md b/content/institutional-policies/_index.md new file mode 100644 index 00000000..52a022a5 --- /dev/null +++ b/content/institutional-policies/_index.md @@ -0,0 +1,47 @@ +--- +title: +date: 2023-05-24 +type: landing + +sections: + - block: + content: + title: Institutional Research Software Policies + design: + spacing: + padding: ["4rem", "2rem"] + + - block: markdown + content: + title: + text: | +
+
+ + # Research institution policies to support research software + + + The combined ReSA and Research Data Alliance (RDA) [Policies in Research Organisations for Research Software (PRO4RS) ](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/forum/) builds on the ReSA task force to collect institutional policies for further dissemination as examples and encouragement to increase the value of research software assets worldwide. + + We collect policies around research software (or open source software) that govern the creation, maintenance, acquisition, use, distribution and management of software within their environment, as well as to recognise such work. Software policies might cover multiple aspects of management to ensure legal, ethical, and secure use of software, as well as the protection of intellectual property rights, and can discuss how software work is used in hiring, evaluation, and promotion. Sometimes research software is integrated into other policies, such as those focused on open science or research data. Useful resources on policies also include talks from the 2022 Science Europe [Conference on Open Science](https://www.scienceeurope.org/media/bmznjvt4/2022-se-open-science-conference-documentation.pdf) by Neil Chue Hong, [Implementation of policies on research software](https://docs.google.com/presentation/d/1OTIJf0Ub70LWTv-ZLeuGK2YqkTuMhWlCiqzEcxFUadE/edit#slide=id.p), and Michelle Barker, [Landscape of policies around research software](https://tinyurl.com/se-software). + + The ReSA collection on institutional policies to support research software is open for input of new policies. You can add your organisation’s policy to it [via this form](https://docs.google.com/forms/d/e/1FAIpQLSenXMgY6c5IDpjvSxfXOWfMwvK8CNrWNFwqZNRgqqRYyyqVJg/viewform) or through a comment in the [google sheet](https://docs.google.com/spreadsheets/d/1YgXG1eSrby8e5wzqYOiOZW6KmJtR-wdBTrjr1_aMtF4/edit#gid=0). You can also engage by + joining the [Policies in Research Organisations for Research Software (PRO4RS) Working Group](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/forum/). + + For information on national and international policies that support research software, refer to our [listing on the Guidelines page](/resource/guidelines/) and [blog post](/blog/2021-12/). + +
+ + +
+ +
+
+ design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- \ No newline at end of file diff --git a/content/license/10-license-header/index.md b/content/license/10-license-header/index.md deleted file mode 100644 index 5c35e0e9..00000000 --- a/content/license/10-license-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2021-03-22" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "License" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/license/_index.md b/content/license/_index.md new file mode 100644 index 00000000..374cbdf4 --- /dev/null +++ b/content/license/_index.md @@ -0,0 +1,100 @@ +--- +title: +date: 2025-05-22 +type: landing + +sections: + - block: markdown + content: + title: + text: | + License + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: center + size: cover + text_color_light: false + + + + - block: markdown + content: + title: ReSA License + text: | + The Research Software Alliance makes all of their materials publicly available under open source licenses. + + The documents and data are made available under a CC-BY 4.0 International license, unless otherwise specified, software are made available under the MIT license. + + The license text listed below (describing both CC-BY 4.0 International and MIT licenses) is re-used under a CC-BY license from The Carpentries community materials (from the [R novice gapminder](https://github.com/swcarpentry/r-novice-gapminder/blob/main/LICENSE.md)). + + ## Documents and data: CC BY 4.0 International + + All documentation in this repository ais made available under the [Creative Commons Attribution license 4.0 International][cc-by-human]. + The following is a human-readable summary of (and not a substitute for) the [full legal text of the CC BY 4.0 license][cc-by-legal]. + + You are free: + + * to **Share**---copy and redistribute the material in any medium or format + * to **Adapt**---remix, transform, and build upon the material + + for any purpose, even commercially. + + The licensor cannot revoke these freedoms as long as you follow the license terms. + + Under the following terms: + + * **Attribution**---You must give appropriate credit (mentioning that your work is derived from work of the Research Software Alliance, and where practical, link to [https://www.researchsoft.org](https://www.researchsoft.org)), provide a [link to the license][cc-by-human], and indicate if changes were made. + You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. + * **No additional restrictions**---You may not apply legal terms or technological measures that legally restrict others from doing + anything the license permits. + + With the understanding that: + + * You do not have to comply with the license for elements of the material in the public domain or where your use is permitted by an + applicable exception or limitation. + * No warranties are given. The license may not give you all of the permissions necessary for your intended use. + For example, other rights such as publicity, privacy, or moral rights may limit how you use the material. + + ## Software: MIT License + + The template used for this website is [syna][syna] which is licensed under the [Apache License, Version 2.0](https://github.com/okkur/syna/blob/master/LICENSE). + + Except where otherwise noted, the software and infrastructure provided by the Research Software Alliance are made available under the [OSI][osi]-approved [**MIT license**][mit-license]. + + Copyright (c) 2021 Research Software Alliance + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. + + [cc-by-human]: https://creativecommons.org/licenses/by/4.0/ + [cc-by-legal]: https://creativecommons.org/licenses/by/4.0/legalcode + [mit-license]: https://opensource.org/licenses/mit-license.html + [osi]: https://opensource.org + [syna]: https://syna.okkur.org/ + design: + background: + color: "#ffffff" + text_color_light: false + +--- \ No newline at end of file diff --git a/content/license/content.md b/content/license/content.md deleted file mode 100644 index b933b70f..00000000 --- a/content/license/content.md +++ /dev/null @@ -1,76 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2021-03-22" -weight = 110 -background = "white" - -title = "ReSA License" -#subtitle = "" -+++ - -The Research Software Alliance makes all of their materials publicly available under open source licenses. - -The documents and data are made available under a CC-BY 4.0 International license, unless otherwise specified, software are made available under the MIT license. - -The license text listed below (describing both CC-BY 4.0 International and MIT licenses) is re-used under a CC-BY license from The Carpentries community materials (from the [R novice gapminder](https://github.com/swcarpentry/r-novice-gapminder/blob/main/LICENSE.md)). - -## Documents and data: CC BY 4.0 International - -All documentation in this repository ais made available under the [Creative Commons Attribution license 4.0 International][cc-by-human]. -The following is a human-readable summary of (and not a substitute for) the [full legal text of the CC BY 4.0 license][cc-by-legal]. - -You are free: - -* to **Share**---copy and redistribute the material in any medium or format -* to **Adapt**---remix, transform, and build upon the material - -for any purpose, even commercially. - -The licensor cannot revoke these freedoms as long as you follow the license terms. - -Under the following terms: - -* **Attribution**---You must give appropriate credit (mentioning that your work is derived from work of the Research Software Alliance, and where practical, link to [https://www.researchsoft.org](https://www.researchsoft.org)), provide a [link to the license][cc-by-human], and indicate if changes were made. - You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. -* **No additional restrictions**---You may not apply legal terms or technological measures that legally restrict others from doing -anything the license permits. - -With the understanding that: - -* You do not have to comply with the license for elements of the material in the public domain or where your use is permitted by an - applicable exception or limitation. -* No warranties are given. The license may not give you all of the permissions necessary for your intended use. - For example, other rights such as publicity, privacy, or moral rights may limit how you use the material. - -## Software: MIT License - -The template used for this website is [syna][syna] which is licensed under the [Apache License, Version 2.0](https://github.com/okkur/syna/blob/master/LICENSE). - -Except where otherwise noted, the software and infrastructure provided by the Research Software Alliance are made available under the [OSI][osi]-approved [**MIT license**][mit-license]. - -Copyright (c) 2021 Research Software Alliance - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -[cc-by-human]: https://creativecommons.org/licenses/by/4.0/ -[cc-by-legal]: https://creativecommons.org/licenses/by/4.0/legalcode -[mit-license]: https://opensource.org/licenses/mit-license.html -[osi]: https://opensource.org -[syna]: https://syna.okkur.org/ diff --git a/content/license/index.md b/content/license/index.md deleted file mode 100644 index c0b59261..00000000 --- a/content/license/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "License" -date = "2021-03-22" -+++ diff --git a/content/lorentz/10-guidelines-header b/content/lorentz/10-guidelines-header deleted file mode 100644 index 91056c1a..00000000 --- a/content/lorentz/10-guidelines-header +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2021-10-25" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Lorentz workshop" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/lorentz/20-content.md b/content/lorentz/20-content.md deleted file mode 100644 index f1ad0b5b..00000000 --- a/content/lorentz/20-content.md +++ /dev/null @@ -1,34 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2021-10-25" -weight = 20 -background = "white" -+++ - -## Vive la diffΓ©rence - research software engineers - -This will be a hybrid event with an in-person element from 19-22 April 2022 at the Lorentz Centre in the Netherlands; and online events from March-May 2022 across different time zones. - -See the [event page](https://www.researchsoft.org/events/2022-04/) for general information and details on how to be involved. - -### Workshop rationale - -Research software engineering is becoming increasingly essential as the role of research software is becoming at once more critical to scientific discovery (Barker et al., 2020), and more difficult to sustain. Research software engineering combines professional software engineering expertise with an intimate understanding of research, and is critical to achieving open science goals. - -Research software engineering is at a critical point in its evolution, with the demand for research software engineers expected to continue to rise as open science becomes the norm in research culture. However, significant cultural change is needed in the research software engineering community to increase the DEI that can facilitate the rewarding and enabling research environment needed to enable higher-quality research, by increasing innovation, collaboration and productivity. - -Redefinition of broader research culture to embrace diversity, equity and inclusion (DEI) is also a major challenge, and novel solutions to complex research challenges need to come from a diverse, engaged community. This issue is particularly important in the research software engineering community, which is conservatively estimated to include 330,000+ worldwide ([Hettrick, 2020](https://slides.com/simonhettrick/how-many-rses/fullscreen#/6/3)). Available data reveals a more significant lack of diversity than in the mainstream research community, and there is almost no research on equity and inclusion. International analysis in 2018 on research software engineer demographics found that 73-92% were male, and most commonly ranged in age from 25-44 ([Philipe, 2018](https://www.software.ac.uk/blog/2018-03-12-what-do-we-know-about-rses-results-our-international-surveys)). 2018 data specifically on United Kingdom research software engineers documented a breakdown of 14% women, 5% ethnicity of black, Asian and minority ethnic/mixed, and 6% reporting a disability, with these figures being <50% less than for the UK workforce as a whole ([Chue Hong et al., 2021](https://www.researchgate.net/publication/350647200_Understanding_Equity_Diversity_and_Inclusion_Challenges_Within_the_Research_Software_Community)). - -The research software community is well situated to evolve to frame DEI at its centre due to its dependency on community involvement for innovation and sustainability. Expanding the pool of research software contributors is a concrete, desired outcome that improved DEI could contribute to, with benefits including: - -- Increasing innovation: research has found that diverse teams can improve scientific outputs ([Campbell et al., 2013](https://doi.org/10.1371/); [Liang et al., 2007](https://doi.org/10.1108/02635570710750408)). Research software work usually occurs in teams, and this work will continue to require the ability to maintain critical relationships with diverse stakeholders in the research community. However, [Chue Hong et al.](https://www.researchgate.net/publication/350647200_Understanding_Equity_Diversity_and_Inclusion_Challenges_Within_the_Research_Software_Community) also identify research that demonstrates there can also be drawbacks, and maximisation of benefits depends on effective implementation (2021). -- Increasing sustainability: Research software is often open source software, which is characterised by development by a network of people working together. However, the culture of open source software faces similar challenges in improving DEI ([Benjamin, 2019](https://www.wiley.com/en-au/Race+After+Technology:+Abolitionist+Tools+for+the+New+Jim+Code-p-9781509526437); [Dunbar-Hester, 2020](/h); [Vasilescu et al., 2015](http://vsnu.nl/recognitionandrewards/wp-content/uploads/2019/11/Position-paper-Room-for-everyone%E2%80%99s-talent.pdf)). - -There are other potential benefits to centering research software engineering on DEI to ensure that publicly funded research supports wider society, such as the critical role that research software engineers could play in avoiding bias in software design that would cause negative social repercussions, such as on questions of algorithmic bias and data ownership - -### [Click to read the full schedule](https://docs.google.com/document/d/1jmJwcnP_xbyk1pYVws7mTX-vHrYp9fnAhfjvD2hdbFY/edit#). - -There is also be an online-only program for workshop participants that runs from late March to the end of April. - -ReSA is also collaborating with national research software engineering associations on [DiveRSE](https://diverse-rse.github.io/), a series of talks that provides a public forum to complement the β€œVive la diffΓ©rence - research software engineers” workshop, which is limited to 55 participants. Find out more about the DiveRSE [event series](https://diverse-rse.github.io/about). diff --git a/content/lorentz/_index.md b/content/lorentz/_index.md new file mode 100644 index 00000000..888991f5 --- /dev/null +++ b/content/lorentz/_index.md @@ -0,0 +1,53 @@ +--- +title: +date: 2021-10-25 +type: landing + +sections: + + - block: markdown + content: + title: + text: | + +
+
+ + + Vive la diffΓ©rence – research software engineers + + + This will be a hybrid event with an in-person element from 19-22 April 2022 at the Lorentz Centre in the Netherlands; and online events from March-May 2022 across different time zones. + + See the [event page](/events/events-past/2022-04/) for general information and details on how to be involved. + + ### Workshop rationale + + Research software engineering is becoming increasingly essential as the role of research software is becoming at once more critical to scientific discovery (Barker et al., 2020), and more difficult to sustain. Research software engineering combines professional software engineering expertise with an intimate understanding of research, and is critical to achieving open science goals. + + Research software engineering is at a critical point in its evolution, with the demand for research software engineers expected to continue to rise as open science becomes the norm in research culture. However, significant cultural change is needed in the research software engineering community to increase the DEI that can facilitate the rewarding and enabling research environment needed to enable higher-quality research, by increasing innovation, collaboration and productivity. + + Redefinition of broader research culture to embrace diversity, equity and inclusion (DEI) is also a major challenge, and novel solutions to complex research challenges need to come from a diverse, engaged community. This issue is particularly important in the research software engineering community, which is conservatively estimated to include 330,000+ worldwide ([Hettrick, 2020](https://slides.com/simonhettrick/how-many-rses/fullscreen#/6/3)). Available data reveals a more significant lack of diversity than in the mainstream research community, and there is almost no research on equity and inclusion. International analysis in 2018 on research software engineer demographics found that 73-92% were male, and most commonly ranged in age from 25-44 ([Philipe, 2018](https://www.software.ac.uk/blog/2018-03-12-what-do-we-know-about-rses-results-our-international-surveys)). 2018 data specifically on United Kingdom research software engineers documented a breakdown of 14% women, 5% ethnicity of black, Asian and minority ethnic/mixed, and 6% reporting a disability, with these figures being <50% less than for the UK workforce as a whole ([Chue Hong et al., 2021](https://www.researchgate.net/publication/350647200_Understanding_Equity_Diversity_and_Inclusion_Challenges_Within_the_Research_Software_Community)). + + The research software community is well situated to evolve to frame DEI at its centre due to its dependency on community involvement for innovation and sustainability. Expanding the pool of research software contributors is a concrete, desired outcome that improved DEI could contribute to, with benefits including: + + - Increasing innovation: research has found that diverse teams can improve scientific outputs ([Campbell et al., 2013](https://doi.org/10.1371/); [Liang et al., 2007](https://doi.org/10.1108/02635570710750408)). Research software work usually occurs in teams, and this work will continue to require the ability to maintain critical relationships with diverse stakeholders in the research community. However, [Chue Hong et al.](https://www.researchgate.net/publication/350647200_Understanding_Equity_Diversity_and_Inclusion_Challenges_Within_the_Research_Software_Community) also identify research that demonstrates there can also be drawbacks, and maximisation of benefits depends on effective implementation (2021). + - Increasing sustainability: Research software is often open source software, which is characterised by development by a network of people working together. However, the culture of open source software faces similar challenges in improving DEI ([Benjamin, 2019](https://www.wiley.com/en-au/Race+After+Technology:+Abolitionist+Tools+for+the+New+Jim+Code-p-9781509526437); [Dunbar-Hester, 2020](/h); [Vasilescu et al., 2015](http://vsnu.nl/recognitionandrewards/wp-content/uploads/2019/11/Position-paper-Room-for-everyone%E2%80%99s-talent.pdf)). + + There are other potential benefits to centering research software engineering on DEI to ensure that publicly funded research supports wider society, such as the critical role that research software engineers could play in avoiding bias in software design that would cause negative social repercussions, such as on questions of algorithmic bias and data ownership + + ### [Click to read the full schedule](https://docs.google.com/document/d/1jmJwcnP_xbyk1pYVws7mTX-vHrYp9fnAhfjvD2hdbFY/edit#). + + There is also be an online-only program for workshop participants that runs from late March to the end of April. + + ReSA is also collaborating with national research software engineering associations on [DiveRSE](https://diverse-rse.github.io/), a series of talks that provides a public forum to complement the β€œVive la diffΓ©rence - research software engineers” workshop, which is limited to 55 participants. Find out more about the DiveRSE [event series](https://diverse-rse.github.io/about). +
+
+ design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["1rem", "1rem"] + +--- diff --git a/content/lorentz/index.md b/content/lorentz/index.md deleted file mode 100644 index d3d8f66e..00000000 --- a/content/lorentz/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Lorentz workshop" -date = "2021-10-25" -+++ diff --git a/content/mars-forum/10-header/index.md b/content/mars-forum/10-header/index.md deleted file mode 100644 index 6da24745..00000000 --- a/content/mars-forum/10-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2025-05-15" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Metascience and Research Software (MaRS) Forum" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/mars-forum/20-content.md b/content/mars-forum/20-content.md deleted file mode 100644 index 77726a0f..00000000 --- a/content/mars-forum/20-content.md +++ /dev/null @@ -1,34 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2025-05-15" -weight = 20 -background = "white" -+++ - -The Metascience and Research Software (MaRS) Forum is a collaboration of metascience groups, communities, and organisations committed to supporting research software, and those who develop it, as fundamental and vital to research. Research software metascience aims to understand implications of research software on the research ecosystem, particularly on the research process, and could include: - -- The impact of research software policy or funding on the research ecosystem (e.g., representation, carbon budgets) -- The impact of research software and associated factors (e.g., training, careers) on the research ecosystem -- The impact of research software disruptors (e.g., AI coding assistants,) on the research ecosystem - -Software has become an essential constituent of research and research software is starting to be seen as an equal partner of research data in key international policy documents such as UNESCO and the OECD. However, support and recognition of the importance of research software and the people who develop and maintain it, has failed to keep pace with the scale of use of research software in research. - -The MaRS Forum provides a formal mechanism for members to share practices and consider how to individually and collectively address common challenges to achieve the significant cultural change needed across the research sector globally. It aims to address topics such as: - -- Landscape analysis of existing metascience on research software, to identify opportunities for consolidation, and gaps that need filling -- Approaches to creating research software as a research area -- Increasing awareness of research on research software -- Metascience publishing opportunities (or lack thereof) - -For further information, please refer to the [**Terms of Reference**](https://docs.google.com/document/d/1_B0jmASpDKTcWvNGy7liOYcaTvKkOsgBUR_vBQ4CYq8/edit?usp=sharing) - -Membership is open to stakeholders that conduct research to understand implications of research software on the research ecosystem, particularly on the research process. - -Examples of/types: -- Research software metascience groups (e.g., International Research Software Engineering Research (IRSER)) -- Research software communities that undertake metascience (e.g., Software Sustainability Institute) -- Broader metascience organisations (e.g., Research on Research Institute (RoRI)) - -Members can suggest other organisations that support research software metascience to join, or potential participants can contact [ReSA](mailto:info@researchsoft.org) for information on joining. - diff --git a/content/mars-forum/index.md b/content/mars-forum/index.md deleted file mode 100644 index 1fe57be3..00000000 --- a/content/mars-forum/index.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "Metascience and Research Software Forum" -date = "2025-05-15" -+++ - - diff --git a/content/membership/10-header.md b/content/membership/10-header.md deleted file mode 100644 index bf598c70..00000000 --- a/content/membership/10-header.md +++ /dev/null @@ -1,15 +0,0 @@ -+++ -fragment = "hero" -date = "2022-08-22" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "ReSA Organisational Membership" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/membership/20-content.md b/content/membership/20-content.md deleted file mode 100644 index 7220108e..00000000 --- a/content/membership/20-content.md +++ /dev/null @@ -1,31 +0,0 @@ -+++ -fragment = "content" -date = "2022-08-22" -weight = 20 -background = "white" -+++ - -## Welcome to ReSA -ReSA brings research software communities together to collaborate on the advancement of the research software ecosystem. -**ReSA organisational membership** will demonstrate your commitment to international collaboration and innovation for research (including [AI-driven research](https://doi.org/10.5281/zenodo.13350748)) by supporting the ReSA vision that research software and those who develop and maintain it are recognised and valued as fundamental and vital to research worldwide. -By joining us, you will have the opportunity to collaborate with decision makers and key influencers to create outcomes that will achieve both your goals and those of the international community. - -## Organisational Membership Benefits - -Opportunities to: -- Collaborate with the international research software community to solve common issues -- Further the international standing and influence of your organisation -- Gain public recognition as an Organisational Member of ReSA and use of the official ReSA Organisational Member logo -- Learn and share best practice -- Promote your work to a global audience -- Broaden your reach by collaborating on ReSA projects -- Attend global community events -- Access decision makers and key influencers -- Receive regular communications -- ReSA Organisational Member Logo - - -## How to join - -**To become a ReSA Organisational Member**, please provide your [contact details](https://airtable.com/shrI5UKJesqNoFiD7), and review the optional [membership agreement](https://docs.google.com/document/d/1arCDTzFaM8gavaSBOFcuHSI_m_WmvV4pJjwDVdNwmbk/edit) and consider if it is beneficial for you and if your organisation wishes to also sign this, or contact [memberships@researchsoft.org](mailto:memberships@researchsoft.org) to discuss further. Membership is for the calendar year. Organisations that join after 1 July are eligible for a 6-month membership. Membership fees are invoiced through our fiscal sponsor, [Code for Science and Society](https://codeforscience.org/). An [overview of Organisational Membership](https://docs.google.com/document/d/1Rlw55m1D4oQbwvwBzxUFvIVJYQ32QD5x/edit) (which summarises this webpage) is also available for use. Information on how ReSA funds are used is included in [About Us](https://www.researchsoft.org/about-resa/), and [donations](https://www.researchsoft.org/donate/) are always welcome. - diff --git a/content/membership/30-table-costs.md b/content/membership/30-table-costs.md deleted file mode 100644 index 85f24f32..00000000 --- a/content/membership/30-table-costs.md +++ /dev/null @@ -1,90 +0,0 @@ -+++ -fragment = "table" -#disabled = false -date = "2022-09-06" -weight = 30 -background = "white" - -title = "Annual Investment" -title_align = "left" # Default is center, can be left, right or center - -[header] - [[header.values]] - text = "Number of employees" - - [[header.values]] - text = "High Income Country - Not-For-Profit (USD$)" - - [[header.values]] - text = "High Income Country - For-Profit (USD$)" - - [[header.values]] - text = "Low/Middle Income Country - Not-For-Profit (USD$)" - - [[header.values]] - text = "Low/Middle Income Country - For-Profit (USD$)" - -[[rows]] - [[rows.values]] - text = "less than 150" - align = "right" - - [[rows.values]] - text = "$2,500" - align = "right" - - [[rows.values]] - text = "$4,000" - align = "right" - - [[rows.values]] - text = "$500" - align = "right" - - [[rows.values]] - text = "$800" - align = "right" - -[[rows]] - [[rows.values]] - text = "151-250" - align = "right" - - [[rows.values]] - text = "$5,000" - align = "right" - - [[rows.values]] - text = "$8,000" - align = "right" - - [[rows.values]] - text = "$1,000" - align = "right" - - [[rows.values]] - text = "$1,600" - align = "right" - -[[rows]] - [[rows.values]] - text = "250 or more" - align = "right" - - [[rows.values]] - text = "$12,500" - align = "right" - - [[rows.values]] - text = "$20,000" - align = "right" - - [[rows.values]] - text = "$2,500" - align = "right" - - [[rows.values]] - text = "$4,000" - align = "right" - -+++ diff --git a/content/membership/40-content.md b/content/membership/40-content.md deleted file mode 100644 index bb2224bb..00000000 --- a/content/membership/40-content.md +++ /dev/null @@ -1,23 +0,0 @@ -+++ -fragment = "content" -date = "2022-08-22" -weight = 40 -background = "white" -+++ - -## Recent ReSA Achievements -- Leading the development of a [research software funders community](https://www.researchsoft.org/funders-forum/) that has engaged 60+ funding organisations in its goal to address common challenges to achieve the significant cultural change needed across the research sector and better coordinate investment globally. See [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/). -- Engaging in drafting of the [OECD Recommendation on Access to Research Data from Public Funding](https://www.oecd.org/sti/recommendation-access-to-research-data-from-public-funding.htm) and [UNESCO Recommendation on Open Science](https://en.unesco.org/science-sustainable-future/open-science/recommendation), which has led to the inclusion of research software in key international policy and [toolkits](https://www.unesco.org/en/open-science/toolkit-fostering-open-science-practices). -- Facilitating global [community forums](https://www.researchsoft.org/community-forum/) and discussions, supported by [analysis](https://www.researchsoft.org/resa-resources/) of relevant issues, to identify community priorities and create task forces on topics such as [research software policy for research institutions](https://www.researchsoft.org/software-policies/), and [research software authorship](https://www.researchsoft.org/tf-authorship-contribution/). -- Co-leading the drafting of the [FAIR for Research Software Principles](https://www.nature.com/articles/s41597-022-01710-x) which engaged 500+ community members. [Positive signals of adoption](https://www.researchsoft.org/blog/2024-03/) demonstrate high levels of community support. -- Supporting the ReSA task force on [code availability by publishers](https://www.researchsoft.org/taskforces/) to engage publishers in the coordination needed to gain wide-scale cultural change. -- Co-leading initiatives in [Africa](https://www.talarify.co.za/2023/05/29/driving-sustainable-research-software-and-systems-insights-from-the-first-research-software-indaba-in-africa/) (with [Research Software and Systems Engineers Africa](https://rsse.africa/)) and Asia (with [Research Software Engineers Asia Association](https://rse-asia.github.io/RSE_Asia/)) to identify research software community leaders and influencers to help shape international dialogues. -- Providing [resources](https://www.researchsoft.org/resa-resources/) to raise awareness of the importance of software in research. - - - - - - -## Enquiries -Please contact Michelle Barker, [memberships@researchsoft.org](mailto:memberships@researchsoft.org). diff --git a/content/membership/75-org-members/Astera.md b/content/membership/75-org-members/Astera.md deleted file mode 100644 index 48881279..00000000 --- a/content/membership/75-org-members/Astera.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "AsteraLogo.png" - url = "https://astera.org/" - text = "Astera logo" -+++ - diff --git a/content/membership/75-org-members/CZI.md b/content/membership/75-org-members/CZI.md deleted file mode 100644 index 2d223801..00000000 --- a/content/membership/75-org-members/CZI.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "CZI_Logo.jpg" - url = "https://chanzuckerberg.com/" - text = "Chan Zuckerberg Initiative" - -+++ diff --git a/content/membership/75-org-members/NCSA.md b/content/membership/75-org-members/NCSA.md deleted file mode 100644 index ce20ff19..00000000 --- a/content/membership/75-org-members/NCSA.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "NCSA.png" - text = "NCSA" - url = "https://www.ncsa.illinois.edu" -+++ diff --git a/content/membership/75-org-members/NWO.md b/content/membership/75-org-members/NWO.md deleted file mode 100644 index 71f99128..00000000 --- a/content/membership/75-org-members/NWO.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "NWO-logo.jpeg" - url = "https://www.nwo.nl/en" - text = "NWO logo" -+++ diff --git a/content/membership/75-org-members/UKRI.md b/content/membership/75-org-members/UKRI.md deleted file mode 100644 index fe9f28c6..00000000 --- a/content/membership/75-org-members/UKRI.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "UKRI logo.png" - url = "https://www.ukri.org/" - text = "UKRI logo" -+++ diff --git a/content/membership/75-org-members/USRSE.md b/content/membership/75-org-members/USRSE.md deleted file mode 100644 index 3660f32a..00000000 --- a/content/membership/75-org-members/USRSE.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "USRSE logo.png" - url = "https://us-rse.org/" - text = "US-RSE logo" -+++ - diff --git a/content/membership/75-org-members/Volkswagen.md b/content/membership/75-org-members/Volkswagen.md deleted file mode 100644 index bb57ba0d..00000000 --- a/content/membership/75-org-members/Volkswagen.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Volkswagen.jpg" - url = "https://www.volkswagenstiftung.de/en" - text = "Volkswagen Foundation logo" -+++ diff --git a/content/membership/75-org-members/alfredpsloan.md b/content/membership/75-org-members/alfredpsloan.md deleted file mode 100644 index 17b28621..00000000 --- a/content/membership/75-org-members/alfredpsloan.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Sloan-logo.png" - url = "https://sloan.org/" - text = "Alfred P. Sloan Foundation" - -+++ diff --git a/content/membership/75-org-members/ardc.md b/content/membership/75-org-members/ardc.md deleted file mode 100644 index c9e22e26..00000000 --- a/content/membership/75-org-members/ardc.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "ARDC_logo_RGB.png" - url = "https://ardc.edu.au/" - text = "ARDC logo" -+++ diff --git a/content/membership/75-org-members/asap.md b/content/membership/75-org-members/asap.md deleted file mode 100644 index 76f183fe..00000000 --- a/content/membership/75-org-members/asap.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "ASAP_FullColor.png" - url = "https://parkinsonsroadmap.org/#" - text = "ASAP logo" -+++ diff --git a/content/membership/75-org-members/dfg.md b/content/membership/75-org-members/dfg.md deleted file mode 100644 index 2b8b5657..00000000 --- a/content/membership/75-org-members/dfg.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "DFG_logo.jpg" - url = "https://www.dfg.de/en/index.jsp" - text = "German Research Foundation" -+++ diff --git a/content/membership/75-org-members/digitalresearchalliance.md b/content/membership/75-org-members/digitalresearchalliance.md deleted file mode 100644 index e4eafe88..00000000 --- a/content/membership/75-org-members/digitalresearchalliance.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Alliance.png" - url = "https://alliancecan.ca/" - text = "Digital Research Alliance of Canada" -+++ diff --git a/content/membership/75-org-members/index.md b/content/membership/75-org-members/index.md deleted file mode 100644 index c226e5cc..00000000 --- a/content/membership/75-org-members/index.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -fragment = "items" -date = "2022-03-06" -weight = 76 -background = "secondary" - -title = "Organisational Members" -+++ diff --git a/content/membership/75-org-members/kavli.md b/content/membership/75-org-members/kavli.md deleted file mode 100644 index 21e6ca6a..00000000 --- a/content/membership/75-org-members/kavli.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "The_Kavli_Foundation_Logo_White_Red.png" - url = "https://www.kavlifoundation.org/" - text = "Kavli logo" -+++ diff --git a/content/membership/75-org-members/microsoft.md b/content/membership/75-org-members/microsoft.md deleted file mode 100644 index a8fcd89c..00000000 --- a/content/membership/75-org-members/microsoft.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Microsoft logo.png" - url = "https://www.microsoft.com/" - text = "Microsoft logo" -+++ - diff --git a/content/membership/75-org-members/ministere.md b/content/membership/75-org-members/ministere.md deleted file mode 100644 index f096b9d1..00000000 --- a/content/membership/75-org-members/ministere.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "1_MESR_RVB.jpg" - url = "https://www.ouvrirlascience.fr/the-committee-for-open-science/" - text = "French Committee for Open Science logo" -+++ diff --git a/content/membership/75-org-members/nasa.md b/content/membership/75-org-members/nasa.md deleted file mode 100644 index 9bbeb1a4..00000000 --- a/content/membership/75-org-members/nasa.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - url = "https://www.nih.gov" -+++ -## [NASA](https://www.nasa.gov) diff --git a/content/membership/75-org-members/national-nih.md b/content/membership/75-org-members/national-nih.md deleted file mode 100644 index b522da28..00000000 --- a/content/membership/75-org-members/national-nih.md +++ /dev/null @@ -1,8 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - url = "https://www.nih.gov" -+++ -## [National Institutes of Health](https://www.nih.gov) diff --git a/content/membership/75-org-members/nesi.md b/content/membership/75-org-members/nesi.md deleted file mode 100644 index 39d6e16c..00000000 --- a/content/membership/75-org-members/nesi.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "NeSI.png" - url = "https://www.nesi.org.nz/" - text = "New Zealand eScience Infrastructure" -+++ diff --git a/content/membership/75-org-members/netherlands-escience.md b/content/membership/75-org-members/netherlands-escience.md deleted file mode 100644 index dbd94650..00000000 --- a/content/membership/75-org-members/netherlands-escience.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "nesc-transparent.png" - text = "Netherlands eScience Center" - url = "https://www.esciencecenter.nl/" -+++ diff --git a/content/membership/75-org-members/rsu.md b/content/membership/75-org-members/rsu.md deleted file mode 100644 index 5d404155..00000000 --- a/content/membership/75-org-members/rsu.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Stradini_logo_ENG_vert-RGB.jpg" - url = "https://www.rsu.lv/en/bioinformatics-group" - text = "RSU logo" -+++ diff --git a/content/membership/75-org-members/schmidt.md b/content/membership/75-org-members/schmidt.md deleted file mode 100644 index 0f22ff95..00000000 --- a/content/membership/75-org-members/schmidt.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "schmidtsciences_primary_color.png" - url = "https://www.schmidtsciences.org/" - text = "Schmidt Sciences logo" -+++ - diff --git a/content/membership/75-org-members/simons.md b/content/membership/75-org-members/simons.md deleted file mode 100644 index dada3e6a..00000000 --- a/content/membership/75-org-members/simons.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Simons.png" - url = "https://www.simonsfoundation.org/" - text = "Simons Foundation" -+++ diff --git a/content/membership/75-org-members/software-ssi.md b/content/membership/75-org-members/software-ssi.md deleted file mode 100644 index f2b3b614..00000000 --- a/content/membership/75-org-members/software-ssi.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "ssi_logo_with_name-small2.png" - text = "Software Sustainability Institute" - url = "https://www.software.ac.uk/" -+++ diff --git a/content/membership/75-org-members/wellcome.md b/content/membership/75-org-members/wellcome.md deleted file mode 100644 index 5ba4d7cd..00000000 --- a/content/membership/75-org-members/wellcome.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -title = "" -#weight = - -[asset] - image = "Wellcome_logo_Black.jpg" - url = "https://wellcome.org/" - text = "Wellcome logo" -+++ diff --git a/content/membership/90-founding-members.md b/content/membership/90-founding-members.md deleted file mode 100644 index ed264377..00000000 --- a/content/membership/90-founding-members.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -fragment = "content" -date = "2022-08-22" -weight = 90 -background = "white" -+++ -## Founding Members - - diff --git a/content/membership/Overview.pdf b/content/membership/Overview.pdf deleted file mode 100644 index 9fc12717..00000000 Binary files a/content/membership/Overview.pdf and /dev/null differ diff --git a/content/membership/index.md b/content/membership/index.md deleted file mode 100644 index bffd414b..00000000 --- a/content/membership/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Organisational Membership" -date = "2022-08-22" -+++ diff --git a/content/national-policies/_index.md b/content/national-policies/_index.md new file mode 100644 index 00000000..c58b330b --- /dev/null +++ b/content/national-policies/_index.md @@ -0,0 +1,46 @@ +--- +title: +date: 2025-07-25 +type: landing + +sections: + - block: + content: + title: National Research Software Policies + design: + spacing: + padding: ["4rem", "2rem"] + + - block: markdown + content: + title: + text: | +
+
+ + # National policies to support research software + + The [Research Software Policy (RSP) Forum](/forums/rsp-forum/), convened by ReSA, is compiling national policies to share as resources and examples that can support governments in developing, strengthening, or updating their research software policies. + + We collect policies around research software (or open source software) that govern the creation, maintenance, acquisition, use, distribution and management of software within their environment, as well as to recognise such work. Software policies might cover multiple aspects of management to ensure legal, ethical, and secure use of software, as well as the protection of intellectual property rights, and can discuss how software work is used in hiring, evaluation, and promotion. + + In some cases, research software is addressed within broader frameworks such as open science or research data policies. Additional valuable resources include the [Amsterdam Declaration on Funding Research Software Sustainability (ADORE.software)](https://doi.org/10.5281/zenodo.13735888) and its complementary [toolkit](https://doi.org/10.5281/zenodo.15345286), as well as presentations from the 2022 Science Europe Conference on Open Science – specifically, [_Implementation of policies on research software_](https://docs.google.com/presentation/d/1OTIJf0Ub70LWTv-ZLeuGK2YqkTuMhWlCiqzEcxFUadE/edit#slide=id.p) by Neil Chue Hong, and [_Landscape of policies around research software_](https://tinyurl.com/se-software) by Michelle Barker. + + For institutional-level research software policies, refer to ReSA’s [dedicated collection](/institutional-policies/). Further information on national and international policies that support research software can be found on our [Guidelines page](/resource/guidelines/) and in our [blog post](/blog/2021-12/). + + You can add your country’s policy to the database through a comment in the [Google sheet](https://docs.google.com/spreadsheets/d/1zhhLqXIPNzirRVaHTxYy_859sCDEPob0TAl4HA6alAs/edit?gid=0#gid=0). + +
+ +
+ +
+
+ design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- \ No newline at end of file diff --git a/content/news/2019-08/index.md b/content/news/2019-08/index.md index eb8e80ed..554b4f10 100644 --- a/content/news/2019-08/index.md +++ b/content/news/2019-08/index.md @@ -1,21 +1,16 @@ -+++ -fragment = "content" -weight = 100 -#background = "" -#categories = ["Sample", "Blog", "Lorem Ipsum"] - -title = "ReSA News: August 2019" -#subtitle = "" -title_align = "left" - -display_date = false -date = "2019-08-16" - -summary = """ -- Call for community involvement in ReSA projects -- Community news""" - -+++ +--- +title: "ReSA News: August 2019" +subtitle: "" +date: 2019-08-16 +authors: + - "" + +summary: "" +draft: false +--- + +* Call for community involvement in ReSA projects +* Community news This month, we have a call for community involvement in ReSA projects, along with some timely tidbits from the larger community. diff --git a/content/news/2019-09/index.md b/content/news/2019-09/index.md index 7ee082de..1770f0df 100644 --- a/content/news/2019-09/index.md +++ b/content/news/2019-09/index.md @@ -1,24 +1,19 @@ -+++ -fragment = "content" -weight = 100 -#background = "" -#categories = ["Sample", "Blog", "Lorem Ipsum"] +--- +title: "ReSA News: September 2019" +subtitle: "" +date: 2019-09-25 +authors: + - "" -title = "ReSA News: September 2019" -#subtitle = "" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2019-09-25" - -summary = """ ReSA taskforces: - Software landscape analysis - Evidence for the importance of research software - Current opportunities for funding research software -""" -+++ This month, we wanted to reiterate the need for feedback and participation in the task forces beginning to take shape: * [Software landscape analysis](https://drive.google.com/open?id=1iBO-mkwrgdveVxWROGz_4Trkv2gey7I9). How can we identify the different communities and topics of interest for the research software community (e.g., preservation, RSEs, citation, productivity, sustainability)? We plan to use this understanding to write an article to educate the research community about the importance of software, and/or to find areas where we should try to involve additional representatives in ReSA. Please [contact ReSA](/contact) if you’re interested in collaborating on this. diff --git a/content/news/2019-11/index.md b/content/news/2019-11/index.md index 0b3e5821..0b3c77d1 100644 --- a/content/news/2019-11/index.md +++ b/content/news/2019-11/index.md @@ -1,23 +1,17 @@ -+++ -fragment = "content" -weight = 100 -#background = "" -#categories = ["Sample", "Blog", "Lorem Ipsum"] +--- +title: "ReSA News: November 2019" +subtitle: "" +date: 2019-11-19 +authors: + - "" -title = "ReSA News: November 2019" -#subtitle = "" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2019-11-19" - -summary = """ - ReSA call for participation - UKRI strategy recognises the critical role of software in Research - Chan Zuckerberg Initiative Awards $5 Million for Open Source Software Projects Essential to Science -""" - -+++ This month, we have a call for participation to an important survey, a link to great recognition of the role of software in research from the UK government and news on the Chan Zuckerberg Initiative for Open Source Software Projects. diff --git a/content/news/2019-11/toc.md b/content/news/2019-11/toc.md deleted file mode 100644 index 7c7d675c..00000000 --- a/content/news/2019-11/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ \ No newline at end of file diff --git a/content/news/2019-12/index.md b/content/news/2019-12/index.md index e5b5e3be..c1eeb24a 100644 --- a/content/news/2019-12/index.md +++ b/content/news/2019-12/index.md @@ -1,21 +1,16 @@ -+++ -fragment = "content" -weight = 100 -#background = "" -#categories = ["Sample", "Blog", "Lorem Ipsum"] +--- +title: "ReSA News: December 2019" +subtitle: "" +date: 2019-12-21 +authors: + - "" -title = "ReSA News: December 2019" -#subtitle = "" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2019-12-21" - -summary = """ - Update from the taskforce on evidence for the importance of research software -- Community news""" - -+++ +- Community news First a piece of good news! We’ve received some funding and we will let you know how we’re using that in the New Year. diff --git a/content/news/2019-12/toc.md b/content/news/2019-12/toc.md deleted file mode 100644 index 7c7d675c..00000000 --- a/content/news/2019-12/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ \ No newline at end of file diff --git a/content/news/2020-01/index.md b/content/news/2020-01/index.md index 7c30fb6d..137c6dfe 100644 --- a/content/news/2020-01/index.md +++ b/content/news/2020-01/index.md @@ -1,23 +1,17 @@ -+++ -fragment = "content" -weight = 100 -#background = "" -#categories = ["Sample", "Blog", "Lorem Ipsum"] +--- +title: "ReSA News: January 2020" +subtitle: "" +date: 2020-01-31 +authors: + - "" +summary: "" +draft: false +--- -title = "ReSA News: January 2020" -#subtitle = "" -title_align = "left" - -display_date = false -date = "2020-01-31" - -summary = """ - Events - Open calls - Other news -""" -+++ ### Happy New Year! diff --git a/content/news/2020-01/toc.md b/content/news/2020-01/toc.md deleted file mode 100644 index 7c7d675c..00000000 --- a/content/news/2020-01/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ \ No newline at end of file diff --git a/content/news/2020-03/index.md b/content/news/2020-03/index.md index cd306ab2..340180a5 100644 --- a/content/news/2020-03/index.md +++ b/content/news/2020-03/index.md @@ -1,23 +1,16 @@ -+++ -fragment = "content" -weight = 100 -#background = "" -#categories = ["Sample", "Blog", "Lorem Ipsum"] +--- +title: "ReSA News: March 2020" +subtitle: "" +date: 2020-03-25 +authors: + - "" +summary: "" +draft: false +--- -title = "ReSA News: March 2020" -#subtitle = "" -title_align = "left" - -display_date = false -date = "2020-03-25" - -summary = """ - ReSA’s first blog post - FAIR 4 Ressearch Software - Journal special issues -""" - -+++ We hope that everyone is able to stay safe in these difficult times. diff --git a/content/news/2020-03/toc.md b/content/news/2020-03/toc.md deleted file mode 100644 index 7c7d675c..00000000 --- a/content/news/2020-03/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ \ No newline at end of file diff --git a/content/news/2020-04/index.md b/content/news/2020-04/index.md index 3c9c4398..ff41113c 100644 --- a/content/news/2020-04/index.md +++ b/content/news/2020-04/index.md @@ -1,23 +1,16 @@ -+++ -fragment = "content" -weight = 100 -#background = "" -#categories = ["Sample", "Blog", "Lorem Ipsum"] +--- +title: "ReSA News: April 2020" +subtitle: "" +date: 2020-04-29 +authors: + - "" +summary: "" +draft: false +--- -title = "ReSA News: April 2020" -#subtitle = "" -title_align = "left" - -display_date = false -date = "2020-04-29" - -summary = """ - Update on the software component of the RDA COVID WG - FAIR for Research Software news - Introducing the ReSA Director, Michelle Barker -""" - -+++ We hope that you are all safe and well in these extraordinary times. diff --git a/content/news/2020-04/toc.md b/content/news/2020-04/toc.md deleted file mode 100644 index 7c7d675c..00000000 --- a/content/news/2020-04/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ \ No newline at end of file diff --git a/content/news/2020-05/index.md b/content/news/2020-05/index.md index e6c5b9ce..aa62de72 100644 --- a/content/news/2020-05/index.md +++ b/content/news/2020-05/index.md @@ -1,25 +1,18 @@ -+++ -fragment = "content" -weight = 100 -#background = "" -#categories = ["Sample", "Blog", "Lorem Ipsum"] +--- +title: "ReSA News: May 2020" +subtitle: "" +date: 2020-05-21 +authors: + - "" +summary: "" +draft: false +--- -title = "ReSA News: May 2020" -#subtitle = "" -title_align = "left" - -display_date = false -date = "2020-05-21" - -summary = """ - ReSA becomes an RDA affiliate - ReSA responds to US government request for information - Recommendations for policy makers, funders and publishers - FAIR for Research Software update - Community news on the National Information Standards Organization and the Zenodo COVID-19 Community -""" - -+++ ### ReSA becomes an RDA affiliate diff --git a/content/news/2020-05/toc.md b/content/news/2020-05/toc.md deleted file mode 100644 index 7c7d675c..00000000 --- a/content/news/2020-05/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ \ No newline at end of file diff --git a/content/news/2020-06/index.md b/content/news/2020-06/index.md index 337e969a..1afe0dd9 100644 --- a/content/news/2020-06/index.md +++ b/content/news/2020-06/index.md @@ -1,24 +1,17 @@ -+++ -fragment = "content" -weight = 100 -#background = "" -#categories = ["Sample", "Blog", "Lorem Ipsum"] +--- +title: "ReSA News: June 2020" +subtitle: "" +date: 2020-06-26 +authors: + - "" +summary: "" +draft: false +--- -title = "ReSA News: June 2020" -#subtitle = "" -title_align = "left" - -display_date = false -date = "2020-06-26" - -summary = """ - ReSA blog: Evidence for the importance of research software - FAIR for Research Software webinars next week - Data science survey from Academic Data Science Alliance - Now open: Chan Zuckerberg Initiative Essential Open Source Software for Science program -""" - -+++ ### ReSA blog: Evidence for the importance of research software diff --git a/content/news/2020-06/toc.md b/content/news/2020-06/toc.md deleted file mode 100644 index 7c7d675c..00000000 --- a/content/news/2020-06/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ \ No newline at end of file diff --git a/content/news/2020-07/index.md b/content/news/2020-07/index.md index 13a5489c..9532d56a 100644 --- a/content/news/2020-07/index.md +++ b/content/news/2020-07/index.md @@ -1,21 +1,18 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA News: July 2020" +subtitle: "" +date: 2020-07-23 +authors: + - "" +summary: "" +draft: false +--- -title = "ReSA News: July 2020" -title_align = "left" - -display_date = false -date = "2020-07-23" - -summary = """ * FAIR for Research Software update * Recommendations on software sharing for policy makers, funders, publishers and researchers * Request for Proposals for Critical Digital Research Infrastructure by Ford Foundation and Sloan Foundation * OECD report on developing digital skills in the research sector -* US Research Software Engineer Association July newsletter items of interest""" - -+++ +* US Research Software Engineer Association July newsletter items of interest ### FAIR for Research Software update diff --git a/content/news/2020-07/toc.md b/content/news/2020-07/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/content/news/2020-07/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2020-08/index.md b/content/news/2020-08/index.md index 26362648..1242417f 100644 --- a/content/news/2020-08/index.md +++ b/content/news/2020-08/index.md @@ -1,20 +1,17 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA News: August 2020" +subtitle: "" +date: 2020-08-26 +authors: + - "" +summary: "" +draft: false +--- -title = "ReSA News: August 2020" -title_align = "left" - -display_date = false -date = "2020-08-26" - -summary = """ * ReSA becomes a fiscally sponsored project of Code for Science and Society * Additions to ReSA Zotero library on resources that support software in research * SORSE launches on 2 September 2020 -* NSF has issued a solicitation that includes sustainable software projects""" - -+++ +* NSF has issued a solicitation that includes sustainable software projects ### ReSA becomes a fiscally sponsored project of Code for Science and Society diff --git a/content/news/2020-08/toc.md b/content/news/2020-08/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/content/news/2020-08/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2020-09/index.md b/content/news/2020-09/index.md index 1a19b937..f293dc6c 100644 --- a/content/news/2020-09/index.md +++ b/content/news/2020-09/index.md @@ -1,26 +1,23 @@ -+++ -fragment = "content" -weight = 100 - -title = "ReSA News: September 2020" -title_align = "left" - -display_date = false -date = "2020-09-21" - -summary = """ +--- +title: "ReSA News: September 2020" +subtitle: "" +date: 2020-09-21 +authors: + - "" +summary: "" +draft: false +--- * ReSA’s three focus areas: policy, people and infrastructure * FAIR4RS events * SORSE event in late October: What do we (not) know about RSE? * Community news: BSSw Fellowships, ADSA Annual meeting, JupyterCon, GitHub CLI 1.0, JOSS's 1000th paper, The Festival of Maintenance and software -""" -+++ ### **ReSA's three focus areas** ReSA has three main focus areas: policy, people and infrastructure. We’ll be profiling the work we do in each in future newsletters. + ![Policy, infrastructure, people](3_areas.png) ### **FAIR4RS events** @@ -57,7 +54,3 @@ This workshop aims to assess what we do and do not know about RSE. The participa *If you’d like to suggest items for inclusion in ReSA News then please [contact us](/contact). If you would to engage with the ReSA community, then join the [ReSA Google group](https://groups.google.com/forum/#!forum/research-software-alliance) to receive email updates. To subscribe send a blank email to [research-software-alliance+subscribe@googlegroups.com](mailto:research-software-alliance+subscribe@googlegroups.com)* *[ReSA](https://www.researchsoft.org/) is a community of influencers and members of major research software communities, programs, organisations and individuals. ReSA’s vision is that research software be recognised and valued as a fundamental and vital component of research worldwide. The ReSA mission is to bring research software communities together to collaborate on the advancement of research software. ReSA is a fiscally sponsored project of [Code for Science and Society](https://codeforscience.org/).* - - - - diff --git a/content/news/2020-09/toc.md b/content/news/2020-09/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/content/news/2020-09/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2020-10/index.md b/content/news/2020-10/index.md index 4814d365..3b6358ac 100644 --- a/content/news/2020-10/index.md +++ b/content/news/2020-10/index.md @@ -1,25 +1,20 @@ -+++ -fragment = "content" -weight = 100 - -title = "ReSA News: October 2020" -title_align = "left" - -display_date = false -date = "2020-10-23" - -summary = """ +--- +title: "ReSA News: October 2020" +subtitle: "" +date: 2020-10-23 +authors: + - "" +summary: "" +draft: false +--- * ReSA’s three focus areas: Spotlight on Infrastructure * ReSA Steering Committee call for nominations * Community news: SORSE events; diversity, equity and inclusion; CANARIE awards for software reuse; and the German Research Foundation (DFG) National Research Data Infrastructure (NFDI) -""" - -+++ ### **ReSA’s three focus areas: Spotlight on Infrastructure** -ReSA has three main focus areas: policy, people and infrastructure. This month’s newsletter highlights [ReSA taskforces](https://www.researchsoft.org/taskforces/) in the infrastructure space, particularly on standards and guidelines. +ReSA has three main focus areas: policy, people and infrastructure. This month’s newsletter highlights [ReSA taskforces](/taskforces/) in the infrastructure space, particularly on standards and guidelines. ReSA is a joint convenor of the [FAIR 4 Research Software Working Group (FAIR4RS WG) ](https://www.rd-alliance.org/groups/fair-4-research-software-fair4rs-wg) with the [Research Data Alliance (RDA)](https://www.rd-alliance.org/) and [FORCE11](https://www.force11.org/). FAIR4RS WG is enabling coordination of a range of existing community-led discussions on how to define and effectively apply FAIR principles to research software, to continue to advance the aims of the open science movement. @@ -49,7 +44,7 @@ There will be many events in 2021 where the community can get information, provi ### **ReSA Steering Committee call for nominations** -The [ReSA Steering Committee](https://www.researchsoft.org/people/) is **calling for [nominations](https://www.researchsoft.org/news/2020-11/) for 4 new members of the Steering Committee** in 2021. +The [ReSA Steering Committee](/about/governance/) is **calling for [nominations](/news/2020-11/) for 4 new members of the Steering Committee** in 2021. The ReSA Steering Committee is responsible for the strategic direction of ReSA. The role of the Steering Committee members is to provide strategic inputs to the development of ReSA, to achieve the ReSA vision that research software is recognised and valued as a fundamental and vital component of research worldwide, and the mission to bring research software communities together to collaborate on the advancement of research software. ReSA Steering Committee Members are welcome from a broad diversity of individuals, disciplines of study, geographies, career stages and backgrounds, and are expected to have a broad understanding of, and a demonstrated commitment to research software or another relevant area such as open science. If you are interested in nominating yourself or someone else to be a ReSA Steering Committee member, then please **fill out this [form](https://docs.google.com/forms/d/e/1FAIpQLSfLhl_Vmtdd9Vuzb0Cf3_sry3F1OORpETIpWWwriHpIajJQhQ/viewform?vc=0&c=0&w=1&flr=0) by Fri 13 November** 2020. If you would like further information then please contact Michelle Barker, Director, ReSA. @@ -64,4 +59,3 @@ If you are interested in nominating yourself or someone else to be a ReSA Steeri *If you’d like to suggest items for inclusion in ReSA News then please [contact us](/contact). If you would to engage with the ReSA community, then join the [ReSA Google group](https://groups.google.com/forum/#!forum/research-software-alliance) to receive email updates. To subscribe send a blank email to [research-software-alliance+subscribe@googlegroups.com](mailto:research-software-alliance+subscribe@googlegroups.com)* *[ReSA](https://www.researchsoft.org/) is a community of influencers and members of major research software communities, programs, organisations and individuals. ReSA’s vision is that research software be recognised and valued as a fundamental and vital component of research worldwide. The ReSA mission is to bring research software communities together to collaborate on the advancement of research software. ReSA is a fiscally sponsored project of [Code for Science and Society](https://codeforscience.org/).* - diff --git a/content/news/2020-10/toc.md b/content/news/2020-10/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/content/news/2020-10/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2020-11/index.md b/content/news/2020-11/index.md index 7801077d..9af0b4c3 100644 --- a/content/news/2020-11/index.md +++ b/content/news/2020-11/index.md @@ -1,23 +1,14 @@ -+++ -fragment = "content" -weight = 100 - -title = "Call for Steering Committee nominations" -title_align = "left" - -display_date = false -date = "2020-10-19" - -summary = """ - -The ReSA [Steering Committee](https://www.researchsoft.org/people/) is calling for nominations for 4 new members of the Steering Committee in 2021. -""" - -+++ - -### - -The ReSA [Steering Committee](https://www.researchsoft.org/people/) is calling for nominations for 4 new members of the Steering Committee in 2021. +--- +title: "Call for Steering Committee nominations" +subtitle: "" +date: 2020-10-19 +authors: + - "" +summary: "The ReSA [Steering Committee](/about/governance/) is calling for nominations for 4 new members of the Steering Committee in 2021." +draft: false +--- + +The ReSA [Steering Committee](/about/governance/) is calling for nominations for 4 new members of the Steering Committee in 2021. The ReSA Steering Committee is responsible for the strategic direction of ReSA. The role of the Steering Committee members is to provide strategic inputs to the development of ReSA, to achieve the ReSA vision that research software is recognised and valued as a fundamental and vital component of research worldwide, and the mission to bring research software communities together to collaborate on the advancement of research software. The ReSA Steering Committee will consist of 9 members in 2021, with the potential for some observer participants if determined relevant by the Steering Committee. ReSA Steering Committee Members are welcome from a broad diversity of individuals, disciplines of study, geographies, career stages and backgrounds, and are expected to have a broad understanding of, and a demonstrated commitment to research software or another relevant area such as open science. diff --git a/content/news/2020-11/toc.md b/content/news/2020-11/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/content/news/2020-11/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2020-12/index.md b/content/news/2020-12/index.md index c702ee3e..9c314327 100644 --- a/content/news/2020-12/index.md +++ b/content/news/2020-12/index.md @@ -1,14 +1,12 @@ -+++ -fragment = "content" -weight = 100 - -title = "ReSA News: December 2020" -title_align = "left" - -display_date = false -date = "2020-12-21" - -summary = """ +--- +title: "ReSA News: December 2020" +subtitle: "" +date: 2020-12-21 +authors: + - "" +summary: "" +draft: false +--- This month’s news includes: @@ -17,13 +15,11 @@ This month’s news includes: * Recent ReSA talks * ReSA Code of Conduct released * Community news: SORSE events; Collaborations Workshop 2021; and some holiday reading suggestions -""" -+++ ### ReSA’s three focus areas: Spotlight on policy -ReSA has three main focus areas: policy, people and infrastructure. This month’s newsletter highlights ReSA work in the policy space to achieve the ReSA aim that research software be recognised and valued as a fundamental and vital component of research worldwide. [ReSA taskforces](https://www.researchsoft.org/taskforces/) in this area have achieved outcomes including: +ReSA has three main focus areas: policy, people and infrastructure. This month’s newsletter highlights ReSA work in the policy space to achieve the ReSA aim that research software be recognised and valued as a fundamental and vital component of research worldwide. [ReSA taskforces](/taskforces/) in this area have achieved outcomes including: * Development of research software sharing guidelines for policy makers, funders, publishers and researchers for inclusion in the [Research Data Alliance COVID-19 Guidelines and Recommendations](https://www.rd-alliance.org/group/rda-covid19-rda-covid19-omics-rda-covid19-epidemiology-rda-covid19-clinical-rda-covid19-1). * Supporting the inclusion of software in the OECD Committee for Science and Technology Policy recommendations (which will become soft law for OECD member states). @@ -33,7 +29,7 @@ The taskforce on the evidence for the importance of research software completed ### ReSA Steering Committee says farewell to Catherine Jones -ReSA would like to thank Catherine Jones for her contributions as a member of the [ReSA Steering Committee](https://www.researchsoft.org/people/). Catherine has served on this committee since its inception two years ago, bringing significant expertise in software engineering and governance of not-for-profit organisations. +ReSA would like to thank Catherine Jones for her contributions as a member of the [ReSA Steering Committee](/about/governance/). Catherine has served on this committee since its inception two years ago, bringing significant expertise in software engineering and governance of not-for-profit organisations. In November ReSA called for nominations for new members to join the Steering Committee in 2021 and will be announcing the new committee members shortly. @@ -60,7 +56,7 @@ ReSA has been involved in the following workshops in November to engage our comm ### ReSA Code of Conduct -ReSA now has a [Code of Conduct](https://www.researchsoft.org/code-of-conduct/) that members of the ReSA community are expected to adhere to. This Code of Conduct should be honored in any ReSA related activities, by anyone claiming affiliation with ReSA, and especially when someone is representing ReSA in any role (including as an event volunteer or speaker). This Code of Conduct has been adapted from the [US-RSE Association Code of Conduct](https://www.researchsoft.org/code-of-conduct/), which builds on the work of [NumFocus](https://numfocus.org/code-of-conduct) and others. +ReSA now has a [Code of Conduct](/about/code-of-conduct/) that members of the ReSA community are expected to adhere to. This Code of Conduct should be honored in any ReSA related activities, by anyone claiming affiliation with ReSA, and especially when someone is representing ReSA in any role (including as an event volunteer or speaker). This Code of Conduct has been adapted from the [US-RSE Association Code of Conduct](/about/code-of-conduct/), which builds on the work of [NumFocus](https://numfocus.org/code-of-conduct) and others. ### Community news diff --git a/content/news/2020-12/toc.md b/content/news/2020-12/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/content/news/2020-12/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2021-01/index.md b/content/news/2021-01/index.md index 719aa47a..59643668 100644 --- a/content/news/2021-01/index.md +++ b/content/news/2021-01/index.md @@ -1,14 +1,13 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA News: January 2021" +subtitle: "" +date: 2021-01-28 +authors: + - "" +summary: "" +draft: false +--- -title = "ReSA News: January 2021" -title_align = "left" - -display_date = false -date = "2021-01-28" - -summary = """ This month’s news includes: * Sloan funding for ReSa task force @@ -16,13 +15,10 @@ This month’s news includes: * Welcome to our Community Manager * FAIR4RS Update * Community news: Recognizing the value of software: a software citation guide, and Series of Online Research Software Events events -""" - -+++ ### Sloan funding for ReSA task force -ReSA is grateful to the [Alfred P. Sloan Foundation](https://sloan.org/) for supporting the [ReSA task force](https://www.researchsoft.org/taskforces/) applying the FAIR principles to research software. The activity is also a FORCE11 and Research Data Alliance working group. The grant from the Sloan Foundation will support the [FAIR for Research Software (FAIR4RS) Working Group](https://www.rd-alliance.org/groups/fair-4-research-software-fair4rs-wg) to increase the FAIR community’s focus on improving software health through improved practices by engaging the research software community in the crucial first step of agreeing on the application of the FAIR principles to research software. +ReSA is grateful to the [Alfred P. Sloan Foundation](https://sloan.org/) for supporting the [ReSA task force](/taskforces/) applying the FAIR principles to research software. The activity is also a FORCE11 and Research Data Alliance working group. The grant from the Sloan Foundation will support the [FAIR for Research Software (FAIR4RS) Working Group](https://www.rd-alliance.org/groups/fair-4-research-software-fair4rs-wg) to increase the FAIR community’s focus on improving software health through improved practices by engaging the research software community in the crucial first step of agreeing on the application of the FAIR principles to research software. ### New ReSA Steering Committee members diff --git a/content/news/2021-01/toc.md b/content/news/2021-01/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/content/news/2021-01/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2021-02/index.md b/content/news/2021-02/index.md index ae002b81..faa3316f 100644 --- a/content/news/2021-02/index.md +++ b/content/news/2021-02/index.md @@ -1,14 +1,13 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA News: February 2021" +subtitle: "" +date: 2021-02-25 +authors: + - "" +summary: "" +draft: false +--- -title = "ReSA News: February 2021" -title_align = "left" - -display_date = false -date = "2021-02-25" - -summary = """ This month’s news includes: * Wellcome Trust funding @@ -17,16 +16,13 @@ This month’s news includes: * FAIR4RS Update * OECD Recommendation on access to research data now includes software * Community news: RSE Stories podcast, Dryad and Zenodo integration, csv,conf, IEEE eScience 2021 International Conference, Wellcome Open Research Fund -""" - -+++ ### Wellcome Trust funding ReSA would like to thank the [Wellcome Trust](https://wellcome.org/) for their support for ReSA’s work in bringing research software communities together to collaborate on the advancement of research software through three programs during 2021: * [FAIR4RS WG](https://www.rd-alliance.org/groups/fair-4-research-software-fair4rs-wg) project direction to develop community-endorsed FAIR for research software principles -* [FAIR4RS Roadmap](https://www.researchsoft.org/taskforces/) leadership to map FAIR for research software projects into a longer-term strategic framework +* [FAIR4RS Roadmap](/taskforces/) leadership to map FAIR for research software projects into a longer-term strategic framework * People Roadmap to support the development of career paths and reward structures to complement the FAIR4RS Roadmap The mission of the Wellcome Trust is to support science to solve the urgent health challenges facing everyone. @@ -35,7 +31,7 @@ The mission of the Wellcome Trust is to support science to solve the urgent heal ReSA has three main focus areas: policy, people and infrastructure. This month’s newsletter highlights ReSA work in the people space to achieve the ReSA aim that research software be recognised and valued as a fundamental and vital component of research worldwide. ReSA engagement in this area include: -* [Software landscape analysis taskforce](https://www.researchsoft.org/taskforces/). This task force identified and analysed the research software landscape in this blog posted in 2020. Help us keep the [ReSA list of research software communities](https://docs.google.com/spreadsheets/d/15JHqOxR4HIKHYe821IPvbxIuXP1zMjXKGEIJwB-GPqE/edit#gid=0) up to date by making comments in the spreadsheet. +* [Software landscape analysis taskforce](/taskforces/). This task force identified and analysed the research software landscape in this blog posted in 2020. Help us keep the [ReSA list of research software communities](https://docs.google.com/spreadsheets/d/15JHqOxR4HIKHYe821IPvbxIuXP1zMjXKGEIJwB-GPqE/edit#gid=0) up to date by making comments in the spreadsheet. * ReSA is one of the organisations coordinating development of the [Research Data Alliance](https://www.rd-alliance.org)-led [Open Science Registry](http://openscienceregistry.org/). This registry will support Open Science practices by providing a publicly available, searchable and evidence-based online platform of the intentions and outcomes of ongoing and future policy changes to the research reward and evaluation system. * ReSA is part of the [AccelNet Proposal: Community of Open Scholarship Grassroots Networks](https://www.researchgate.net/publication/338934140_NSF_19-501_AccelNet_Proposal_Community_of_Open_Scholarship_Grassroots_Networks_COSGN) (COSGN) led by the [Centre for Open Science](https://www.cos.io/). COSGN includes 120 grassroots networks and proposes to formalise governance and coordination of the networks to maximise their impact and establish standard practices for sustainability. If the proposal is successful it will help ReSA in its role facilitating connections and communication across communities by leading an open source working group. diff --git a/content/news/2021-02/toc.md b/content/news/2021-02/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/content/news/2021-02/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2021-03/index.md b/content/news/2021-03/index.md index ff7684c5..89fb048e 100644 --- a/content/news/2021-03/index.md +++ b/content/news/2021-03/index.md @@ -1,23 +1,19 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA News: March 2021" +subtitle: "" +date: 2021-03-24 +authors: + - "" +summary: "" +draft: false +--- -title = "ReSA News: March 2021" -title_align = "left" - -display_date = false -date = "2021-03-24" - -summary = """ This month’s news includes: * FAIR4RS Update * Building research software communities * Volunteer to be a software expert at EGU21 * Community news: 2021 INCF Assembly, Chan Zuckerberg Initiative, Research software sustainability in the Netherlands, 1st International Workshop on the Body of Knowledge for Software Sustainability (BoKSS’21), IEEE Computer Society, Academic Data Science Alliance and US-RSE Association, 2020 FAIR Convergence Symposium -""" - -+++ ### FAIR4RS Update diff --git a/content/news/2021-03/toc.md b/content/news/2021-03/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/content/news/2021-03/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2021-04/index.md b/content/news/2021-04/index.md index 19c05903..c3b4cb7d 100644 --- a/content/news/2021-04/index.md +++ b/content/news/2021-04/index.md @@ -1,23 +1,18 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: April 2021" +subtitle: "" +date: 2021-04-28 +authors: + - "" +summary: "" +draft: false +--- -title = "ReSA Newsletter: April 2021" -title_align = "left" - -display_date = false -date = "2021-04-28" - -summary = """ This month’s news includes: * FAIR4RS Update * Collaborations Workshop 21 videos * Community news -""" -+++ - - ### FAIR4RS Update @@ -25,8 +20,6 @@ The [FAIR for Research Software (FAIR4RS) Working Group](https://www.rd-alliance ![FAIR4RS draft principles](FAIR4RS_principles_2021-April.png) - - The Working Group initiated community consultation with the ~ 70 attendees focusing on key questions that arose during the writing sprints to create the first draft of the FAIR4RS principles. The intent of the FAIR principles for research software is to β€œensure transparency, reproducibility, and reusability”, while acknowledging that foundational principles of Findable, Accessible, Interoperable, and Reusable may need to be reinterpreted to ensure that they are applicable to software. Drafting of the FAIR principles for research software includes consideration of two key challenges: 1) Finding the balance between general, more abstract, principles that capture the ethos of FAIR vs specific principles that point to the means of implementation. 2) Sticking closely to the FAIR data principles or reinterpreting the FAIR ethos for software. The [slides](https://docs.google.com/presentation/d/1rX4iGsYhzDbrfHU6KkLZOGdY9y8BzRwRXxjiu8NgFJc/present#slide=id.g8885490676_0_74) and [collaborative notes](https://docs.google.com/document/d/12HkgeK35K5f9lfIk3-QLw1x8w7UL1KfrOp9CW9S97OY/edit%23heading%3Dh.pajmjy1b8nz1) are available for review and the recording will be publicly available at the end of May via the RDA YouTube channel. Instructions of how to engage in the next iteration of the draft principles will be sent via the FAIR4RS mailing list ([RDA FAIR4RS WG posts](https://www.rd-alliance.org/node/69317/posts)). Join the group to receive the notification. @@ -45,8 +38,6 @@ It’s a wrap for [Collaborations Workshop 2021](https://www.software.ac.uk/cw21 - [Group discussion summary: Implementing FAIR for research software: attitudes, advantages and challenges](https://doi.org/10.6084/m9.figshare.14453031) - [Tips and Traps on the Road to FAIR software principles](https://doi.org/10.6084/m9.figshare.14494170.v1) - - ### Community news - ReSA Steering Committee members Daniel S. Katz and Neil P. Chue Hong are editing a **special issue of PeerJ Computer Science on software citation, indexing and discoverability**. If you are doing any work in this area, please consider [submitting](https://peerj.com/special-issues/84-software). @@ -59,11 +50,6 @@ It’s a wrap for [Collaborations Workshop 2021](https://www.software.ac.uk/cw21 - Software source code is a complex object, see Roberto Di Cosmo lightning talk [slides](https://annex.softwareheritage.org/public/talks/2021/2021-04-21-RDA-Data-Granularity.pdf) on software granularity at \#RDA [Plenary 17](https://www.rd-alliance.org/rdas-17th-plenary-meeting-programme) - For information on Software Heritage see The Great Library of Source Code by Stefano Zacchiroli [slides](https://upsilon.cc/~zack/talks/2021/2021-03-20-libreplanet.pdf). - - - - - *If you’d like to suggest items for inclusion in ReSA News, please send them to [info@researchsoft.org](mailto:info@researchsoft.org). To receive ReSA newsletters, join the[ ](https://groups.google.com/forum/%23!forum/research-software-alliance)[ReSA google group](https://groups.google.com/forum/%23!forum/research-software-alliance) by sending a blank email to [research-software-alliance+subscribe@googlegroups.com](mailto:research-software-alliance+subscribe@googlegroups.com) and follow us on twitter [@researchsoft](https://twitter.com/researchsoft)*. *The [Research Software Alliance (ReSA)](https://www.researchsoft.org) is a community of influencers and members of major research software communities, programs, organisations and individuals. ReSA’s vision is that research software be recognised and valued as a fundamental and vital component of research worldwide. The ReSA mission is to bring research software communities together to collaborate on the advancement of research software. ReSA is a fiscally sponsored project of [Code for Science and Society](https://codeforscience.org/)*. diff --git a/content/news/2021-04/toc.md b/content/news/2021-04/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/content/news/2021-04/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2021-05/index.md b/content/news/2021-05/index.md index 0289633a..d6dd1800 100644 --- a/content/news/2021-05/index.md +++ b/content/news/2021-05/index.md @@ -1,14 +1,13 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: May 2021" +subtitle: "" +date: 2021-05-26 +authors: + - "" +summary: "" +draft: false +--- -title = "ReSA Newsletter: May 2021" -title_align = "left" - -display_date = false -date = "2021-05-26" - -summary = """ This month’s news includes: * FAIR4RS Update @@ -16,9 +15,6 @@ This month’s news includes: * Diversity, equity and inclusion in research software engineering * ReSA Steering Committee update * Community news -""" - -+++ ### FAIR4RS Update @@ -28,7 +24,7 @@ The consultation and review are the primary channels for the community to engage ### FAIR4RS Roadmap Update -The FAIR 4 Research Software Roadmap is a [ReSA task force](https://www.researchsoft.org/taskforces/) that aims to identify key stakeholders in areas arising from the application of the FAIR principles to research software, to guide strategic planning and investment. Two working groups have now been formed to advance particular elements of the Roadmap: +The FAIR 4 Research Software Roadmap is a [ReSA task force](/taskforces/) that aims to identify key stakeholders in areas arising from the application of the FAIR principles to research software, to guide strategic planning and investment. Two working groups have now been formed to advance particular elements of the Roadmap: - [Metrics Working Group](https://docs.google.com/document/d/1BpzecVx4ZvSNfHD-UHhofZVdA6qiP_ENrmozmiq9zY4/edit), to develop FAIR research software metrics. - [Life Sciences Working Group](https://docs.google.com/document/d/1yQun2tObksymOrAV4RY7jqbSkZ0r8G6I-vrkDAGHnnI/edit), to support the implementation of the FAIR4RS principles in the life sciences community, with ELIXIR providing a pilot use case. diff --git a/content/news/2021-05/toc.md b/content/news/2021-05/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/content/news/2021-05/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2021-06/index.md b/content/news/2021-06/index.md index 585e182c..1f774621 100644 --- a/content/news/2021-06/index.md +++ b/content/news/2021-06/index.md @@ -1,14 +1,13 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: June 2021" +subtitle: "" +date: 2021-06-24 +authors: + - "" +summary: "" +draft: false +--- -title = "ReSA Newsletter: June 2021" -title_align = "left" - -display_date = false -date = "2021-06-24" - -summary = """ This month’s news includes: * FAIR4RS Update @@ -17,9 +16,6 @@ This month’s news includes: * Community News * Community Surveys * Research software community organisation profile: CodeMeta -""" - -+++ ### FAIR4RS Update diff --git a/content/news/2021-06/toc.md b/content/news/2021-06/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/content/news/2021-06/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2021-07/index.md b/content/news/2021-07/index.md index 42c104bb..0420f5a9 100644 --- a/content/news/2021-07/index.md +++ b/content/news/2021-07/index.md @@ -1,14 +1,13 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: July 2021" +subtitle: "" +date: 2021-07-21 +authors: + - "" +summary: "" +draft: false +--- -title = "ReSA Newsletter: July 2021" -title_align = "left" - -display_date = false -date = "2021-07-21" - -summary = """ This month’s news includes: * This month in research software - community news @@ -18,11 +17,6 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events -""" - -+++ - - ### This month in research software - community news The French Ministry of Research unveiled the second multi-annual [National Plan for Open Science](https://www.ouvrirlascience.fr/second-national-plan-for-open-science/) in France, which squarely **puts software on a par with publications and data in research and Open Science**, and announces a number of measures designed to open research software and better recognise software development in research. See [Roberto’s Di Cosmo](https://www.rd-alliance.org/group/software-source-code-ig-rdaforce11-software-source-code-identification-wg-cure-fair-wg-fair-3)’s very useful summary of key measures, including a clear recommendation to make research software available under an open source licence, unless there are clear strong reasons not to do so; and the creation of a high level expert group dedicated to research software in the National Committee for Open Science. @@ -72,7 +66,7 @@ Upcoming FAIR4RS WG events include: ### Opportunities to get involved with community initiatives -- ReSA welcomes suggestions of additions to our list of [useful resources](https://www.researchsoft.org/guidelines/), such as international recommendations, reports, and guidelines that emphasise best practices. +- ReSA welcomes suggestions of additions to our list of [useful resources](/resource/guidelines/), such as international recommendations, reports, and guidelines that emphasise best practices. - The Society of RSE are encouraging UK RSE community members to consider [joining a peer review college as an expert reviewer](https://society-rse.org/software-is-part-of-research-and-research-software-engineers-should-be-part-of-how-it-is-assessed/), to ensure that the very best practice for use and development of research software. - [Apply](https://www.eoscsecretariat.eu/eosc-liaison-platform/post/call-members-eosc-association-task-forces) to become a member of an [EOSC task force](https://www.eosc.eu/news/draft-charters-eosc-association-task-forces-published) such as [Infrastructure for Quality Research Software](https://www.eosc.eu/sites/default/files/tfcharters/eosca_tfinfrastructureforqualityresearchsoftware_draftcharter_20210614.pdf). Closes 30 July. - [Campus Research Computing Consortium](https://carcc.org/rcd-professionalization/rcdprof-census/research-study-on-research-computing-and-data-workforce/) (CaRCC) invites members of the Research Computing and Data community to participate in a research study of the Research Computing and Data workforce in the United States, the [Research Computing Workforce Survey](https://northwestern.az1.qualtrics.com/jfe/form/SV_8345y1KCls4nNci). diff --git a/content/news/2021-07/toc.md b/content/news/2021-07/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/content/news/2021-07/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2021-08/index.md b/content/news/2021-08/index.md index 5b3fa68c..606bd283 100644 --- a/content/news/2021-08/index.md +++ b/content/news/2021-08/index.md @@ -1,14 +1,13 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: August 2021" +subtitle: "" +date: 2021-08-25 +authors: + - "" +summary: "" +draft: false +--- -title = "ReSA Newsletter: August 2021" -title_align = "left" - -display_date = false -date = "2021-08-25" - -summary = """ This month’s news includes: * This month in research software - community news @@ -18,14 +17,12 @@ This month’s news includes: * Community events * Community resources -""" - -+++ - ### This month in research software - community news * GitHub is now providing [built-in citation support](https://citation-file-format.github.io/) that makes it easy to add software citation files to a repository, and GitHub then uses this to let users know how to correctly cite the software. This will help software developers more easily receive acknowledgments for their contributions, and once this metadata is stored in the repository, it can also be used by other members of the scholarly community to support citation in other ways. + * [Zenodo](https://zenodo.org/) has added support for GitHub’s new software citation feature in generating metadata for software repositories. Also, [Zotero](https://www.zotero.org/) can now [use the enhanced metadata](https://guides.github.com/activities/citable-code/) provided by developers when saving GitHub repositories. + * Applications are open for the [Better Scientific Software Fellowship Program](https://bssw.io/blog_posts/applications-open-for-the-2022-bssw-fellowship-program), which fosters and promotes practices, processes, and tools to improve developer productivity and software sustainability of scientific codes. Fellows must be affiliated with a US-based institution that can receive Federal funds and will receive up to $25,000 for an activity that promotes better scientific software. Applications close September 30, 2021. * Code for Science and Society is accepting [expressions of interest](https://blog.codeforscience.org/digital-infrastructure-incubator-is-live/) for the [Digital Infrastructure Incubator](http://incubator.codeforscience.org/?ref=Blogpost), which holds space for projects to imagine possibility and implement strategy. This six-month cohort program comes with a $5,000 stipend and supports open source digital infrastructure emergent leaders in the implementation of research-backed recommendations concerning sustainability, governance, and community health. @@ -43,9 +40,9 @@ A webinar to introduce the subgroups and answer questions about them will also t ### ReSA Steering Committee Chair -Daniel S. Katz has been announced as the [inaugural Chair](http://www.ncsa.illinois.edu/news/story/katz_named_inaugural_resa_steering_committee_chair) of the [ReSA Steering Committee](https://www.researchsoft.org/people/). Katz is chief scientist at the [National Center for Supercomputing Applications](http://www.ncsa.illinois.edu/) and Research Associate Professor in Computer Science, Electrical and Computer Engineering, and the School of Information Sciences, University of Illinois at Urbana-Champaign. +Daniel S. Katz has been announced as the [inaugural Chair](http://www.ncsa.illinois.edu/news/story/katz_named_inaugural_resa_steering_committee_chair) of the [ReSA Steering Committee](/about/governance/). Katz is chief scientist at the [National Center for Supercomputing Applications](http://www.ncsa.illinois.edu/) and Research Associate Professor in Computer Science, Electrical and Computer Engineering, and the School of Information Sciences, University of Illinois at Urbana-Champaign. -β€œI’ve been working on increasing the recognition of research software and its dependence on the people who develop and maintain it for many years,” says Katz, β€œas this is critical to improving research impacts. I co-founded ReSA with [Michelle Barker](https://www.researchsoft.org/people/) and [Neil Chue Hong](https://www.software.ac.uk/about/staff/person/neil-chue-hong) to enable the strategic coordination needed to maximize the achievement of community-wide goals, so I’m pleased to be able to expand my role in ReSA to help accomplish this, working with our fiscal sponsor, [Code for Science & Society](https://codeforscience.org/).” +β€œI’ve been working on increasing the recognition of research software and its dependence on the people who develop and maintain it for many years,” says Katz, β€œas this is critical to improving research impacts. I co-founded ReSA with [Michelle Barker](/about/our-team/) and [Neil Chue Hong](https://www.software.ac.uk/about/staff/person/neil-chue-hong) to enable the strategic coordination needed to maximize the achievement of community-wide goals, so I’m pleased to be able to expand my role in ReSA to help accomplish this, working with our fiscal sponsor, [Code for Science & Society](https://codeforscience.org/).” ### Opportunities to get involved with community initiatives diff --git a/content/news/2021-08/toc.md b/content/news/2021-08/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/content/news/2021-08/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2021-09/index.md b/content/news/2021-09/index.md index a508635d..15642c07 100644 --- a/content/news/2021-09/index.md +++ b/content/news/2021-09/index.md @@ -1,32 +1,26 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: September 2021" +subtitle: "" +date: 2021-09-23 +authors: + - "" -title = "ReSA Newsletter: September 2021" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2021-09-23" +_Please note that from September 2021 the ReSA newsletters are hosted on MailerLite._ -summary = """ This month’s news includes: -* Community news - this month in research software -* ReSA Strategic Plan -* Wellcome Trust Data blog -* ReSA Steering Committee member profile -* FAIR4RS update -* FAIR4RS Roadmap news -* People Roadmap update -* Opportunities to get involved with community initiatives -* Community events & resources - -""" - -+++ - +- Community news - this month in research software +- ReSA Strategic Plan +- Wellcome Trust Data blog +- ReSA Steering Committee member profile +- FAIR4RS update +- FAIR4RS Roadmap news +- People Roadmap update +- Opportunities to get involved with community initiatives +- Community events & resources **[Read the September Newsletter](https://preview.mailerlite.io/preview/778129/emails/114351112770815371)** - - -_Please note that from September 2021 the ReSA newsletters are hosted on MailerLite_. diff --git a/content/news/2021-09/toc.md b/content/news/2021-09/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/content/news/2021-09/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2021-10/index.md b/content/news/2021-10/index.md index e63db409..cf8b61e1 100644 --- a/content/news/2021-10/index.md +++ b/content/news/2021-10/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: October 2021" +subtitle: "" +date: 2021-10-27 +authors: + - "" -title = "ReSA Newsletter: October 2021" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2021-10-27" - -summary = """ This month’s news includes: * This month in research software - community news @@ -19,10 +19,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - - **[Read the October Newsletter](https://preview.mailerlite.io/preview/778129/emails/114350982352078792)** - diff --git a/content/news/2021-10/toc.md b/content/news/2021-10/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2021-10/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2021-12/index.md b/content/news/2021-12/index.md index 021c6aea..45b481a1 100644 --- a/content/news/2021-12/index.md +++ b/content/news/2021-12/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: December 2021" +subtitle: "" +date: 2021-12-09 +authors: + - "" -title = "ReSA Newsletter: December 2021" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2021-12-09" - -summary = """ This month’s news includes: * This month in research software - community news @@ -19,9 +19,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - - -**[Read the December Newsletter](https://preview.mailerlite.io/preview/778129/emails/114350730116072588)** +**[Read the December Newsletter](https://preview.mailerlite.io/preview/778129/emails/114350730116072588)** \ No newline at end of file diff --git a/content/news/2021-12/toc.md b/content/news/2021-12/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2021-12/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2022-02/index.md b/content/news/2022-02/index.md index a5c7cbd5..99a108cc 100644 --- a/content/news/2022-02/index.md +++ b/content/news/2022-02/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: February 2022" +subtitle: "" +date: 2022-02-24 +authors: + - "" -title = "ReSA Newsletter: February 2022" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2022-02-24" - -summary = """ This month’s news includes: * This month in research software: Community news @@ -19,8 +19,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the February Newsletter](https://preview.mailerlite.io/preview/778129/emails/114350348882150868)** diff --git a/content/news/2022-02/toc.md b/content/news/2022-02/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2022-02/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2022-04/index.md b/content/news/2022-04/index.md index 94005f59..def2b19d 100644 --- a/content/news/2022-04/index.md +++ b/content/news/2022-04/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: March 2022" +subtitle: "" +date: 2022-03-24 +authors: + - "" -title = "ReSA Newsletter: March 2022" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2022-03-24" - -summary = """ This month’s news includes: * This month in research software: Community news @@ -20,8 +20,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the March Newsletter](https://preview.mailerlite.io/preview/778129/emails/114350142587405448)** diff --git a/content/news/2022-04/toc.md b/content/news/2022-04/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2022-04/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2022-05/index.md b/content/news/2022-05/index.md index 99bfa0c6..feaaa607 100644 --- a/content/news/2022-05/index.md +++ b/content/news/2022-05/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: May 2022" +subtitle: "" +date: 2022-05-18 +authors: + - "" -title = "ReSA Newsletter: May 2022" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2022-05-18" - -summary = """ This month’s news includes: * This month in research software: Community news @@ -18,8 +18,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the May Newsletter](https://preview.mailerlite.io/preview/778129/emails/114349980166129455)** diff --git a/content/news/2022-05/toc.md b/content/news/2022-05/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2022-05/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2022-06/index.md b/content/news/2022-06/index.md index 2b9ee291..1ab5879e 100644 --- a/content/news/2022-06/index.md +++ b/content/news/2022-06/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: June 2022" +subtitle: "" +date: 2022-06-24 +authors: + - "" -title = "ReSA Newsletter: June 2022" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2022-06-24" - -summary = """ This month’s news includes: * This month in research software: Community news @@ -18,8 +18,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the June Newsletter](https://preview.mailerlite.io/preview/778129/emails/114349905799021694)** diff --git a/content/news/2022-06/toc.md b/content/news/2022-06/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2022-06/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2022-07/index.md b/content/news/2022-07/index.md index 2aebfcd2..dd8cf0ba 100644 --- a/content/news/2022-07/index.md +++ b/content/news/2022-07/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: August 2022" +subtitle: "" +date: 2022-08-05 +authors: + - "" -title = "ReSA Newsletter: August 2022" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2022-08-05" - -summary = """ This month’s news includes: * This month in research software: Community news @@ -17,8 +17,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the August Newsletter](https://preview.mailerlite.io/preview/778129/emails/114349432363811917)** diff --git a/content/news/2022-07/toc.md b/content/news/2022-07/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2022-07/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2022-09/index.md b/content/news/2022-09/index.md index 0e121543..e90474cd 100644 --- a/content/news/2022-09/index.md +++ b/content/news/2022-09/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: September 2022" +subtitle: "" +date: 2022-09-01 +authors: + - "" -title = "ReSA Newsletter: September 2022" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2022-09-01" - -summary = """ This month’s news includes: * This month in research software: Community news @@ -16,8 +16,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the September Newsletter](https://preview.mailerlite.io/preview/778129/emails/114349311828952533)** diff --git a/content/news/2022-09/toc.md b/content/news/2022-09/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2022-09/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2022-10/index.md b/content/news/2022-10/index.md index daabe270..e77ce269 100644 --- a/content/news/2022-10/index.md +++ b/content/news/2022-10/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: October 2022" +subtitle: "" +date: 2022-10-03 +authors: + - "" -title = "ReSA Newsletter: October 2022" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2022-10-03" - -summary = """ This month’s news includes: * This month in research software: Community news @@ -17,8 +17,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the October Newsletter](https://preview.mailerlite.io/preview/778129/emails/114348898327200906)** diff --git a/content/news/2022-10/toc.md b/content/news/2022-10/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2022-10/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2022-11/index.md b/content/news/2022-11/index.md index 3654a638..a597eacd 100644 --- a/content/news/2022-11/index.md +++ b/content/news/2022-11/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: November 2022" +subtitle: "" +date: 2022-11-03 +authors: + - "" -title = "ReSA Newsletter: November 2022" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2022-11-03" - -summary = """ This month’s news includes: * This month in research software: Community news @@ -18,7 +18,4 @@ This month’s news includes: * ReSA update * Opportunities to get involved with community initiatives -""" - -+++ **[Read the November Newsletter](https://preview.mailerlite.io/preview/778129/emails/114349164517656560)** diff --git a/content/news/2022-11/toc.md b/content/news/2022-11/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2022-11/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2022-12/index.md b/content/news/2022-12/index.md index 408a4dee..0679decc 100644 --- a/content/news/2022-12/index.md +++ b/content/news/2022-12/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: December 2022" +subtitle: "" +date: 2022-12-01 +authors: + - "" -title = "ReSA Newsletter: December 2022" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2022-12-01" - -summary = """ This month’s news includes: * This month in research software: Community news @@ -18,8 +18,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the December Newsletter](https://preview.mailerlite.io/preview/778129/emails/114348755180848473)** diff --git a/content/news/2022-12/toc.md b/content/news/2022-12/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2022-12/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2023-01/index.md b/content/news/2023-01/index.md index d989a85b..5b0c298c 100644 --- a/content/news/2023-01/index.md +++ b/content/news/2023-01/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: January 2023" +subtitle: "" +date: 2023-01-24 +authors: + - "" -title = "ReSA Newsletter: January 2023" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2023-01-24" - -summary = """ This month’s news includes: * This month in research software: Community news @@ -17,8 +17,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the January Newsletter](https://preview.mailerlite.io/preview/778129/emails/114348606595532167)** diff --git a/content/news/2023-01/toc.md b/content/news/2023-01/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2023-01/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2023-02/index.md b/content/news/2023-02/index.md index abe7a18d..086050bc 100644 --- a/content/news/2023-02/index.md +++ b/content/news/2023-02/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: February 2023" +subtitle: "" +date: 2023-02-23 +authors: + - "" -title = "ReSA Newsletter: February 2023" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2023-02-23" - -summary = """ This month’s news includes: * This month in research software: Community news @@ -17,8 +17,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the February Newsletter](https://preview.mailerlite.io/preview/778129/emails/114348443611170281)** diff --git a/content/news/2023-02/toc.md b/content/news/2023-02/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2023-02/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2023-03/index.md b/content/news/2023-03/index.md index 25965674..e68da606 100644 --- a/content/news/2023-03/index.md +++ b/content/news/2023-03/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: March 2023" +subtitle: "" +date: 2023-03-21 +authors: + - "" -title = "ReSA Newsletter: March 2023" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2023-03-21" - -summary = """ This month’s news includes: * This month in research software: Community news @@ -18,8 +18,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the March Newsletter](https://preview.mailerlite.io/preview/778129/emails/114275662271874623)** diff --git a/content/news/2023-03/toc.md b/content/news/2023-03/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2023-03/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2023-04/index.md b/content/news/2023-04/index.md index b56bd5af..cabc40d6 100644 --- a/content/news/2023-04/index.md +++ b/content/news/2023-04/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: April 2023" +subtitle: "" +date: 2023-04-20 +authors: + - "" -title = "ReSA Newsletter: April 2023" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2023-04-20" - -summary = """ This month’s news includes: * This month in research software: Community news @@ -17,8 +17,4 @@ This month’s news includes: * Can National Research and Education Networks be a great focal point for Research Software Engineers in some regions? * Community events and resources -""" - -+++ - **[Read the April Newsletter](https://preview.mailerlite.io/preview/778129/emails/114275603419497595/)** diff --git a/content/news/2023-04/toc.md b/content/news/2023-04/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2023-04/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2023-05/index.md b/content/news/2023-05/index.md index b54adf7a..59f397e2 100644 --- a/content/news/2023-05/index.md +++ b/content/news/2023-05/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: May 2023" +subtitle: "" +date: 2023-05-25 +authors: + - "" -title = "ReSA Newsletter: May 2023" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2023-05-25" - -summary = """ This month’s news includes: * This month in research software: Community news @@ -19,8 +19,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the May Newsletter](https://preview.mailerlite.io/preview/778129/emails/114275544050173757)** diff --git a/content/news/2023-05/toc.md b/content/news/2023-05/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2023-05/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2023-06/index.md b/content/news/2023-06/index.md index c5b55d26..8c00291e 100644 --- a/content/news/2023-06/index.md +++ b/content/news/2023-06/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: June 2023" +subtitle: "" +date: 2023-06-22 +authors: + - "" -title = "ReSA Newsletter: June 2023" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2023-06-22" - -summary = """ This month’s news includes: * This month in research software - community news @@ -18,7 +18,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ **[Read the June Newsletter](https://preview.mailerlite.io/preview/778129/emails/114275246610056442/)** diff --git a/content/news/2023-06/toc.md b/content/news/2023-06/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2023-06/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2023-07/index.md b/content/news/2023-07/index.md index 676ff85e..7b2aed8d 100644 --- a/content/news/2023-07/index.md +++ b/content/news/2023-07/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: July 2023" +subtitle: "" +date: 2023-07-27 +authors: + - "" -title = "ReSA Newsletter: July 2023" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2023-07-27" - -summary = """ This month’s news includes: * This month in research software - community news @@ -17,8 +17,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the July Newsletter](https://preview.mailerlite.io/preview/778129/emails/114275186109318910)** diff --git a/content/news/2023-07/toc.md b/content/news/2023-07/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2023-07/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2023-08/index.md b/content/news/2023-08/index.md index 3d85f15f..894fb263 100644 --- a/content/news/2023-08/index.md +++ b/content/news/2023-08/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: August 2023" +subtitle: "" +date: 2023-08-24 +authors: + - "" -title = "ReSA Newsletter: August 2023" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2023-08-24" - -summary = """ This month’s news includes: * This month in research software - community news @@ -18,8 +18,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the August Newsletter](https://preview.mailerlite.io/preview/778129/emails/114274959843395199)** diff --git a/content/news/2023-08/toc.md b/content/news/2023-08/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2023-08/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2023-09/index.md b/content/news/2023-09/index.md index a14d4ef1..e90d3ac3 100644 --- a/content/news/2023-09/index.md +++ b/content/news/2023-09/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: September 2023" +subtitle: "" +date: 2023-09-21 +authors: + - "" -title = "ReSA Newsletter: September 2023" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2023-09-21" - -summary = """ This month’s news includes: * This month in research software - community news @@ -20,8 +20,5 @@ This month’s news includes: * CZI’s Essential Open Source Software for Science (EOSS) * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ **[Read the September Newsletter](https://preview.mailerlite.io/preview/778129/emails/114274872874501755)** diff --git a/content/news/2023-09/toc.md b/content/news/2023-09/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2023-09/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2023-10/index.md b/content/news/2023-10/index.md index 4710f7e3..52cc4ddc 100644 --- a/content/news/2023-10/index.md +++ b/content/news/2023-10/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: October 2023" +subtitle: "" +date: 2023-10-26 +authors: + - "" -title = "ReSA Newsletter: October 2023" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2023-10-26" - -summary = """ This month’s news includes: * This month in research software - community news @@ -18,8 +18,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the October Newsletter](https://preview.mailerlite.io/preview/778129/emails/114274492792964231)** diff --git a/content/news/2023-10/toc.md b/content/news/2023-10/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2023-10/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2023-11/index.md b/content/news/2023-11/index.md index 8f7ffc5c..04837649 100644 --- a/content/news/2023-11/index.md +++ b/content/news/2023-11/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: November 2023" +subtitle: "" +date: 2023-11-23 +authors: + - "" -title = "ReSA Newsletter: November 2023" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2023-11-23" - -summary = """ This month’s news includes: * This month in research software - community news @@ -20,9 +20,4 @@ This month’s news includes: * CiteSoftware * Community events and resources - -""" - -+++ - **[Read the November Newsletter](https://preview.mailerlite.io/preview/778129/emails/114274296183916422)** diff --git a/content/news/2023-11/toc.md b/content/news/2023-11/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2023-11/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2024-01/index.md b/content/news/2024-01/index.md index 085d0376..e7d603cf 100644 --- a/content/news/2024-01/index.md +++ b/content/news/2024-01/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: January 2024" +subtitle: "" +date: 2024-01-22 +authors: + - "" -title = "ReSA Newsletter: January 2024" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2024-01-22" - -summary = """ This month’s news includes: * This month in research software - community news @@ -18,10 +18,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources - - -""" - -+++ - **[Read the January Newsletter](https://preview.mailerlite.io/preview/778129/emails/114269290200302708)** diff --git a/content/news/2024-01/toc.md b/content/news/2024-01/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2024-01/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2024-02/index.md b/content/news/2024-02/index.md index d1799325..469335b1 100644 --- a/content/news/2024-02/index.md +++ b/content/news/2024-02/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: February 2024" +subtitle: "" +date: 2024-02-22 +authors: + - "" -title = "ReSA Newsletter: February 2024" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2024-02-22" - -summary = """ This month’s news includes: * This month in research software - community news @@ -20,8 +20,4 @@ This month’s news includes: * Resources * Community events -""" - -+++ - **[Read the February Newsletter](https://preview.mailerlite.io/preview/778129/emails/111721306051839975)** diff --git a/content/news/2024-02/toc.md b/content/news/2024-02/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2024-02/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2024-03/index.md b/content/news/2024-03/index.md index 7fa99b01..6c5e898d 100644 --- a/content/news/2024-03/index.md +++ b/content/news/2024-03/index.md @@ -1,15 +1,14 @@ +--- +title: "ReSA Newsletter: March 2024" +subtitle: "" +date: 2024-03-21 +authors: + - "" -+++ -fragment = "content" -weight = 100 +summary: "" +draft: false +--- -title = "ReSA Newsletter: March 2024" -title_align = "left" - -display_date = false -date = "2024-03-21" - -summary = """ This month’s news includes: * This month in research software - community news @@ -21,8 +20,4 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Community events and resources -""" - -+++ - **[Read the March Newsletter](https://preview.mailerlite.io/preview/778129/emails/115832043709924425)** diff --git a/content/news/2024-03/toc.md b/content/news/2024-03/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2024-03/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2024-04/index.md b/content/news/2024-04/index.md index 80a230e4..30926ac5 100644 --- a/content/news/2024-04/index.md +++ b/content/news/2024-04/index.md @@ -1,15 +1,14 @@ +--- +title: "ReSA Newsletter: April 2024" +subtitle: "" +date: 2024-04-25 +authors: + - "" -+++ -fragment = "content" -weight = 100 +summary: "" +draft: false +--- -title = "ReSA Newsletter: April 2024" -title_align = "left" - -display_date = false -date = "2024-04-25" - -summary = """ This month’s news includes: * This month in research software - community news and funding @@ -19,8 +18,4 @@ This month’s news includes: * Resources * Community events -""" - -+++ - **[Read the April newsletter](https://preview.mailerlite.io/preview/778129/emails/118365333458257176)** diff --git a/content/news/2024-04/toc.md b/content/news/2024-04/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2024-04/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2024-05/index.md b/content/news/2024-05/index.md index 94a9d56f..fe6d99df 100644 --- a/content/news/2024-05/index.md +++ b/content/news/2024-05/index.md @@ -1,15 +1,14 @@ +--- +title: "ReSA Newsletter: May 2024" +subtitle: "" +date: 2024-05-28 +authors: + - "" -+++ -fragment = "content" -weight = 100 +summary: "" +draft: false +--- -title = "ReSA Newsletter: May 2024" -title_align = "left" - -display_date = false -date = "2024-05-28" - -summary = """ This month’s news includes: * This month in research software - community news @@ -19,8 +18,4 @@ This month’s news includes: * Resources * Community events -""" - -+++ - **[Read the May newsletter](https://preview.mailerlite.io/preview/778129/emails/121608966680609927)** diff --git a/content/news/2024-05/toc.md b/content/news/2024-05/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2024-05/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2024-06/index.md b/content/news/2024-06/index.md index 18961a4a..5502d88c 100644 --- a/content/news/2024-06/index.md +++ b/content/news/2024-06/index.md @@ -1,15 +1,14 @@ +--- +title: "ReSA Newsletter: June 2024" +subtitle: "" +date: 2024-06-27 +authors: + - "" -+++ -fragment = "content" -weight = 100 +summary: "" +draft: false +--- -title = "ReSA Newsletter: June 2024" -title_align = "left" - -display_date = false -date = "2024-06-27" - -summary = """ This month’s news includes: * This month in research software - community news @@ -20,8 +19,4 @@ This month’s news includes: * Resources * Community events -""" - -+++ - **[Read the June newsletter](https://preview.mailerlite.io/preview/778129/emails/124579541862582079)** diff --git a/content/news/2024-06/toc.md b/content/news/2024-06/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2024-06/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2024-07/index.md b/content/news/2024-07/index.md index 794649d7..fb1b2b45 100644 --- a/content/news/2024-07/index.md +++ b/content/news/2024-07/index.md @@ -1,18 +1,16 @@ +--- +title: "ReSA Newsletter: July 2024" +subtitle: "" +date: 2024-07-26 +authors: + - "" -+++ -fragment = "content" -weight = 100 +summary: "" +draft: false +--- -title = "ReSA Newsletter: July 2024" -title_align = "left" - -display_date = false -date = "2024-07-26" - -summary = """ This month’s news includes: - * This month in research software - community news * Funding opportunities * ReSA’s partnership with the Chan Zuckerberg Initiative’s Essential Open Source Software for Science (EOSS) program @@ -21,10 +19,4 @@ This month’s news includes: * Resources * Community events -""" - -+++ - **[Read the July newsletter](https://preview.mailerlite.io/emails/webview/778129/127929741538756179)** - - diff --git a/content/news/2024-07/toc.md b/content/news/2024-07/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2024-07/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2024-08/index.md b/content/news/2024-08/index.md index 9ab2f88d..47c6a5a5 100644 --- a/content/news/2024-08/index.md +++ b/content/news/2024-08/index.md @@ -1,15 +1,14 @@ +--- +title: "ReSA Newsletter: August 2024" +subtitle: "" +date: 2024-08-29 +authors: + - "" -+++ -fragment = "content" -weight = 100 +summary: "" +draft: false +--- -title = "ReSA Newsletter: August 2024" -title_align = "left" - -display_date = false -date = "2024-08-29" - -summary = """ This month’s news includes: * This month in research software - community news @@ -20,10 +19,4 @@ This month’s news includes: * Resources * Community events -""" - -+++ - **[Read the August newsletter](https://preview.mailerlite.io/emails/webview/778129/131006008802674445)** - - diff --git a/content/news/2024-08/toc.md b/content/news/2024-08/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2024-08/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2024-09/index.md b/content/news/2024-09/index.md index f5dec803..0314116f 100644 --- a/content/news/2024-09/index.md +++ b/content/news/2024-09/index.md @@ -1,15 +1,14 @@ +--- +title: "ReSA Newsletter: September 2024" +subtitle: "" +date: 2024-09-26 +authors: + - "" -+++ -fragment = "content" -weight = 100 +summary: "" +draft: false +--- -title = "ReSA Newsletter: September 2024" -title_align = "left" - -display_date = false -date = "2024-09-26" - -summary = """ This month’s news includes: * This month in research software - community news @@ -21,11 +20,5 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Resources * Community events - -""" - -+++ **[Read the September newsletter](https://preview.mailerlite.io/emails/webview/778129/133509948588950793)** - - diff --git a/content/news/2024-09/toc.md b/content/news/2024-09/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2024-09/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2024-10/index.md b/content/news/2024-10/index.md index ef48b530..0b13a9b2 100644 --- a/content/news/2024-10/index.md +++ b/content/news/2024-10/index.md @@ -1,15 +1,14 @@ +--- +title: "ReSA Newsletter: October 2024" +subtitle: "" +date: 2024-10-23 +authors: + - "" -+++ -fragment = "content" -weight = 100 +summary: "" +draft: false +--- -title = "ReSA Newsletter: October 2024" -title_align = "left" - -display_date = false -date = "2024-10-23" - -summary = """ This month’s news includes: * Research software community news, including the Netherlands National Research Software Day @@ -21,9 +20,5 @@ This month’s news includes: * Opportunities to get involved with community initiatives * Resources * Community events, including eResearch NZ and RDA Plenary 23 (with an update from [Policies in Research Organisations for Research Software (PRO4RS) WG](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/members/all-members/)) - -""" - -+++ **[Read the October newsletter](https://preview.mailerlite.io/emails/webview/778129/135969311810389509)** diff --git a/content/news/2024-10/toc.md b/content/news/2024-10/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2024-10/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2024-11/index.md b/content/news/2024-11/index.md index ab4a206f..925b1a7c 100644 --- a/content/news/2024-11/index.md +++ b/content/news/2024-11/index.md @@ -1,15 +1,14 @@ +--- +title: "ReSA Newsletter: November 2024" +subtitle: "" +date: 2024-11-27 +authors: + - "" -+++ -fragment = "content" -weight = 100 +summary: "" +draft: false +--- -title = "ReSA Newsletter: November 2024" -title_align = "left" - -display_date = false -date = "2024-11-27" - -summary = """ This month’s news includes: * Research software community news, including CZI’s award to rOpenSci @@ -22,8 +21,4 @@ This month’s news includes: * Resources * Community events, including FOSDEM 2025 -""" - -+++ - **[Read the November newsletter](https://preview.mailerlite.io/emails/webview/778129/139135398084347097)** diff --git a/content/news/2024-11/toc.md b/content/news/2024-11/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2024-11/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2024-12/index.md b/content/news/2024-12/index.md index a74a11c2..72677834 100644 --- a/content/news/2024-12/index.md +++ b/content/news/2024-12/index.md @@ -1,15 +1,14 @@ +--- +title: "ReSA Newsletter: December 2024" +subtitle: "" +date: 2024-12-19 +authors: + - "" -+++ -fragment = "content" -weight = 100 +summary: "" +draft: false +--- -title = "ReSA Newsletter: December 2024" -title_align = "left" - -display_date = false -date = "2024-12-19" - -summary = """ This month’s news includes: * Research software community news, including how research software is managed at Dutch University Medical Centres @@ -20,8 +19,4 @@ This month’s news includes: * Resources * Community events, including Software Heritage Symposium & Summit -""" - -+++ - **[Read the December newsletter](https://preview.mailerlite.io/emails/webview/778129/141084052380714513)** diff --git a/content/news/2024-12/toc.md b/content/news/2024-12/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2024-12/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2025-01/index.md b/content/news/2025-01/index.md index a72959db..664ef8d2 100644 --- a/content/news/2025-01/index.md +++ b/content/news/2025-01/index.md @@ -1,15 +1,14 @@ +--- +title: "ReSA Newsletter: January 2025" +subtitle: "" +date: 2025-01-29 +authors: + - "" -+++ -fragment = "content" -weight = 100 +summary: "" +draft: false +--- -title = "ReSA Newsletter: January 2025" -title_align = "left" - -display_date = false -date = "2025-01-29" - -summary = """ This month’s news includes: * Research software community news, including new funding for Digital Competence Centres in the Netherlands @@ -21,8 +20,4 @@ This month’s news includes: * Resources * Community events, including Collaborations Workshop 2025 -""" - -+++ - **[Read the January newsletter](https://preview.mailerlite.io/emails/webview/778129/144882395464599368)** diff --git a/content/news/2025-01/toc.md b/content/news/2025-01/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2025-01/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2025-02/index.md b/content/news/2025-02/index.md index 643a9a51..29d6fb93 100644 --- a/content/news/2025-02/index.md +++ b/content/news/2025-02/index.md @@ -1,15 +1,14 @@ +--- +title: "ReSA Newsletter: February 2025" +subtitle: "" +date: 2025-02-26 +authors: + - "" -+++ -fragment = "content" -weight = 100 +summary: "" +draft: false +--- -title = "ReSA Newsletter: February 2025" -title_align = "left" - -display_date = false -date = "2025-02-26" - -summary = """ This month’s news includes: * Research software community news, including an article about the Journal of Open Source Software (JOSS) @@ -20,8 +19,4 @@ This month’s news includes: * Resources * Community events, including the SciCodes Symposium -""" - -+++ - **[Read the February newsletter](https://preview.mailerlite.io/emails/webview/778129/147396779058399059)** diff --git a/content/news/2025-02/toc.md b/content/news/2025-02/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2025-02/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2025-03/index.md b/content/news/2025-03/index.md index b50da67c..b10c5ddd 100644 --- a/content/news/2025-03/index.md +++ b/content/news/2025-03/index.md @@ -1,15 +1,14 @@ +--- +title: "ReSA Newsletter: March 2025" +subtitle: "" +date: 2025-03-26 +authors: + - "" -+++ -fragment = "content" -weight = 100 +summary: "" +draft: false +--- -title = "ReSA Newsletter: March 2025" -title_align = "left" - -display_date = false -date = "2025-03-26" - -summary = """ This month’s news includes: * Research software community news, including the Klaus Tschira Foundation’s support for software in scientific research @@ -23,8 +22,4 @@ This month’s news includes: * Resources * Community events, including the SciCodes Symposium -""" - -+++ - **[Read the March newsletter](https://preview.mailerlite.io/preview/778129/emails/149868938432349580)** diff --git a/content/news/2025-03/toc.md b/content/news/2025-03/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2025-03/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2025-04/index.md b/content/news/2025-04/index.md index 83216b27..90407d89 100644 --- a/content/news/2025-04/index.md +++ b/content/news/2025-04/index.md @@ -1,15 +1,14 @@ +--- +title: "ReSA Newsletter: April 2025" +subtitle: "" +date: 2025-04-23 +authors: + - "" -+++ -fragment = "content" -weight = 100 +summary: "" +draft: false +--- -title = "ReSA Newsletter: April 2025" -title_align = "left" - -display_date = false -date = "2025-04-23" - -summary = """ This month’s news includes: * Research software community news, including EVERSE’s Research Software Quality Toolkit (RSQKit). @@ -21,8 +20,4 @@ This month’s news includes: * Resources * Community events, including Collaborations Workshop 2025 -""" - -+++ - **[Read the April newsletter](https://preview.mailerlite.io/preview/778129/emails/152397949264987160)** diff --git a/content/news/2025-04/toc.md b/content/news/2025-04/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2025-04/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2025-05/index.md b/content/news/2025-05/index.md index 3b657c13..ef4a2e45 100644 --- a/content/news/2025-05/index.md +++ b/content/news/2025-05/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: May 2025" +subtitle: "" +date: 2025-05-21 +authors: + - "" -title = "ReSA Newsletter: May 2025" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2025-05-21" - -summary = """ This month’s news includes: * Research software community news, including Software Heritage’s OSPO-RADAR project @@ -20,10 +20,4 @@ This month’s news includes: * Resources * Community events, including RSECon25 - - -""" - -+++ - **[Read the May newsletter](https://preview.mailerlite.io/preview/778129/emails/154958299495662880)** diff --git a/content/news/2025-05/toc.md b/content/news/2025-05/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2025-05/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/2025-06/index.md b/content/news/2025-06/index.md index 0e22cb6e..a6c0728a 100644 --- a/content/news/2025-06/index.md +++ b/content/news/2025-06/index.md @@ -1,14 +1,14 @@ -+++ -fragment = "content" -weight = 100 +--- +title: "ReSA Newsletter: June 2025" +subtitle: "" +date: 2025-06-25 +authors: + - "" -title = "ReSA Newsletter: June 2025" -title_align = "left" +summary: "" +draft: false +--- -display_date = false -date = "2025-06-25" - -summary = """ This month’s news includes: * Research software community news, including The Navigation Fund’s Open Science Initiative @@ -22,11 +22,4 @@ This month’s news includes: * Resources * Community events, including Research Software Asia Australia - - - -""" - -+++ - **[Read the June newsletter](https://preview.mailerlite.io/preview/778129/emails/158017832753301347)** diff --git a/content/news/2025-06/toc.md b/content/news/2025-06/toc.md deleted file mode 100644 index 2c39e4b2..00000000 --- a/content/news/2025-06/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/content/news/_index.md b/content/news/_index.md index 66b5d6b3..7bb0f759 100644 --- a/content/news/_index.md +++ b/content/news/_index.md @@ -1,6 +1,25 @@ -+++ +--- +title: News +cms_exclude: true -date = "2020-09-07" -title = "Newsletters" +# View. +# 1 = List +# 2 = Compact +# 3 = Card +# 4 = Citation +view: 3 -+++ \ No newline at end of file +# Optional header image (relative to `static/media/` folder). +header: + caption: '' + image: '' + + +--- + +
+ + Subscribe to the ReSA newsletter + +
diff --git a/content/news/_index/10-content.md b/content/news/_index/10-content.md deleted file mode 100644 index d2c79a69..00000000 --- a/content/news/_index/10-content.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -fragment = "content" -#disabled = false -#date = "2020-10-01" -weight = 10 -background = "white" - -title = "News" -+++ diff --git a/content/news/_index/100-list.md b/content/news/_index/100-list.md deleted file mode 100644 index ac983529..00000000 --- a/content/news/_index/100-list.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -date = "2020-09-07" -fragment = "list" -weight = 100 - -count = 100 # Default value is 10 -#section = "" # Default value is current section -#summary = false # Default value is true -#read_more = true # Default value is empty (empty: show when content is truncated, false to never show, true to always show) -#tiled = true # Default value is false -display_date = true # Default is false - -#subsections = true # Default to true. Shows subsection branch pages -#subsection_leaves = true # Default to false. Shows subsection leaf pages -background = "white" -+++ \ No newline at end of file diff --git a/content/news/_index/15-subscribe.md b/content/news/_index/15-subscribe.md deleted file mode 100644 index e545106f..00000000 --- a/content/news/_index/15-subscribe.md +++ /dev/null @@ -1,12 +0,0 @@ -+++ -fragment = "buttons" -#disabled = false -#date = "2016-09-07" -weight = 15 -background = "white" - -[[buttons]] - text = "Subscribe to the ReSA newsletter" - url = "https://dashboard.mailerlite.com/forms/778129/110635094443558050/share" - color = "success" -+++ diff --git a/content/news/_index/index.md b/content/news/_index/index.md deleted file mode 100644 index bfad9a53..00000000 --- a/content/news/_index/index.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ - -date = "2020-09-07" -headless = true - -+++ \ No newline at end of file diff --git a/content/our-team/10-people-header/index.md b/content/our-team/10-people-header/index.md deleted file mode 100644 index beefffda..00000000 --- a/content/our-team/10-people-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2020-07-24" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Our Team" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/our-team/30-steering-committee.md b/content/our-team/30-steering-committee.md deleted file mode 100644 index 83a29b57..00000000 --- a/content/our-team/30-steering-committee.md +++ /dev/null @@ -1,41 +0,0 @@ -+++ -fragment = "content" -disabled = true -date = "2020-07-21" -weight = 30 -background = "white" - -title = "Steering Committee" -+++ - -**[CHAIR](https://www.hpcwire.com/off-the-wire/ncsa-chief-scientist-katz-named-inaugural-research-software-alliance-steering-committee-chair/): Daniel S. Katz**, Chief Scientist, National Center for Supercomputing Applications (NCSA), University of Illinois, USA - -**Juan Bicarregui**, Head of the Data Division, Scientific Computing Department, Science and Technology Facilities Council, UK - -**Neil Chue Hong**, Director, Software Sustainability Institute, University of Edinburgh, UK - -**Mark Leggott**, Director of International Relations, Digital Research Alliance of Canada - -**Eva Mendez**, Associate Professor, Universidad Carlos III de Madrid, Spain - -**Chris Mentzel**, Executive Director, Data Sciences, Stanford Data Science Initiative, Stanford University, USA - -**Andrew Treloar**, Director, Platforms and Software, Australian Research Data Commons, Australia - -**Joris van Eijnatten**, General Director, Netherlands eScience Center, Netherlands - -**Lou Woodley**, Director, Center for Scientific Collaboration and Community Engagement, UK - -

 

-The most recent open call for Steering Committee members occurred in 2023 and members will be announced soon. Before that the latest open call occurred in 2020. Below are listed the previous Steering Committee members: -

 

- -**Tania Allard**, Co-Director, Quansight, UK (2021) - -**Serah Njambi Rono**, Director of Community Development and Engagement, The Carpentries, Estonia (2021) - -**Karthik Ram**, Senior Research Data Scientist at University of California, Berkeley, USA (2019-2021) - -**Catherine Jones**, Energy Data Centre Lead, Science and Technologies Facilities Council, UK (2019-2020) - -**Scott Henwood**, Senior Director, Programs, CANARIE, Canada (2019) diff --git a/content/our-team/SCopencall/index.md b/content/our-team/SCopencall/index.md deleted file mode 100644 index 1f9bf29a..00000000 --- a/content/our-team/SCopencall/index.md +++ /dev/null @@ -1,41 +0,0 @@ -+++ -fragment = "content" -weight = 100 -disabled = true - -title = "Call for Steering Committee nominations 2023" -title_align = "left" - -display_date = false -date = "2023-02-13" - -summary = """ - -The ReSA [Steering Committee](https://www.researchsoft.org/people/) is calling for nominations for new members of the Steering Committee in 2023. -""" - -+++ - - -The[ Research Software Alliance](https://www.researchsoft.org/) (ReSA) [Steering Committee ](https://www.researchsoft.org/people/) is calling for nominations for additional members of the Steering Committee. - -ReSA is interested in forming a more diverse Steering Committee and **nominations are encouraged from a broad range of ethnicities, genders, disciplines of study, geographies, career stages and backgrounds**. Nominated individuals are expected to have a broad understanding of, and a demonstrated commitment to research software or another relevant area, such as open science, open source software, open research infrastructure, open communities, community governance, etc. - -Composition of the ReSA Steering Committee aims to reflect the global and diverse perspectives of the research software community, and the Steering Committee operates using inclusive participation practices. **ReSA is particularly seeking Steering Committee members who can support initiatives to increase global engagement**, including the opportunities identified by: the two new part-time ReSA Community Managers being located in Africa and Asia, [mapping] of the research software community in the Global South, and convening of the 2022 [Lorentz workshop](https://www.researchsoft.org/blog/2022-07/) on diversity, equity and inclusion in research software engineering. - -The ReSA Steering Committee is responsible for ReSA’s [strategic direction](https://www.researchsoft.org/documents/Strategic_Plan_2021-23.pdf) and financial accountability. The role of the Steering Committee members is to provide strategic inputs to the development of ReSA, to achieve ReSA's vision that research software is recognised and valued as a fundamental and vital component of research worldwide, and ReSA's mission of bringing research software communities together to collaborate on the advancement of research software. - -The **benefits of ReSA Steering Committee membership** include: - -- Recognition as an international champion for research software and the people who develop and maintain it -- Broadening of networks with decision makers and key influencers -- Collaborations with the international research software community to solve common issues -- Learning and sharing of best practice - -ReSA Steering Committee members are expected to commit to attend meetings in their time zone (i.e., at least every second meeting, as the meeting time alternates between two options), and to engage for a few hours a month in additional actions such as reviewing written materials or a more in-depth discussion online. The ReSA Steering Committee decides on the frequency and mechanisms for its meetings, which are currently monthly at times agreed to by the members. All ReSA events are held under the [ReSA Code of Conduct](https://www.researchsoft.org/code-of-conduct/). Legal responsibility for ReSA is held by ReSA’s fiscal sponsors, [Code for Science and Society](https://codeforscience.org/). - -If you are interested in nominating yourself or someone else to be a ReSA Steering Committee member, then please - -**[fill out this form by Friday 10 March, 2023](https://docs.google.com/forms/d/e/1FAIpQLSeyoNCBLDHemj1EKIZpnzOSiTuEm1BykSZnLZfyQB_t4L27yA/viewform)**. - -If you would like further information then please contact [Michelle Barker](michelle@researchsoft.org), Director, ReSA. The current Steering Committee will make decisions on membership and successful nominees will be contacted in April 2023. diff --git a/content/our-team/director/bio.md b/content/our-team/director/bio.md deleted file mode 100644 index 06ff2e3f..00000000 --- a/content/our-team/director/bio.md +++ /dev/null @@ -1,31 +0,0 @@ -+++ -title = "Dr Michelle Barker" -disabled = true -weight = 0 -date = "2021-04-01" - -position = "Director" -lives_in = "Australia" - -[[icons]] - icon = "fab fa-linkedin-in" - text = "Linkedin" - url = "https://www.linkedin.com/in/michelledbarker/" - -[[icons]] - icon = "fab fa-twitter" - text = "Twitter" - url = "https://twitter.com/Michelle1Barker" - -[asset] - image = "michelle.jpg" - text = "Michelle Barker" -+++ - -Michelle co-founded ReSA in 2019 and brings extensive expertise in open science, research software, skills and infrastructure. As a sociologist, Michelle is passionate about building collaborative partnerships to achieve system change. - -She serves on advisory boards including for the [European Virtual Institute for Research Software Excellence](https://everse.software/) (EVERSE) and the [Research Data Alliance Organisational Advisory Board](https://rd-alliance.org/about-rda/our-leadership/rda-organisational-advisory-board.html). As a [consultant in the field of open science](https://www.linkedin.com/in/michelledbarker/) her roles have included chairing the OECD expert group on [digital skills for the research sector](https://www.oecd-ilibrary.org/science-and-technology/building-digital-workforce-capacity-and-skills-for-data-intensive-science_e08aa3bb-en) and co-editing the European Open Science Cloud report, [Digital Skills for FAIR and Open Science](https://op.europa.eu/en/publication-detail/-/publication/af7f7807-6ce1-11eb-aeb5-01aa75ed71a1). - -Michelle is a former Director of the [Australian Research Data Commons](https://ardc.edu.au/), where she led the strategic planning for the Australian government’s $180 million, five-year investment in ARDC, and the [national research software infrastructure investment program](https://nectar.org.au/labs/). - -[Email Michelle Barker](mailto:michelle@researchsoft.org). diff --git a/content/our-team/director/index.md b/content/our-team/director/index.md deleted file mode 100644 index 4f0716ec..00000000 --- a/content/our-team/director/index.md +++ /dev/null @@ -1,11 +0,0 @@ -+++ -fragment = "member" -disabled = true -date = "2021-04-01" -weight = 110 -background = "white" - -title = "" -#subtitle = "Director" -title_align = "left" # Default is center, can be left, right or center -+++ diff --git a/content/our-team/index.md b/content/our-team/index.md deleted file mode 100644 index e98384c2..00000000 --- a/content/our-team/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "ReSA Staff" -date = "2020-07-21" -+++ diff --git a/content/our-team/members/CSS_logo.png b/content/our-team/members/CSS_logo.png deleted file mode 100644 index d5ea7f3a..00000000 Binary files a/content/our-team/members/CSS_logo.png and /dev/null differ diff --git a/content/our-team/members/Jyoti.jpg b/content/our-team/members/Jyoti.jpg deleted file mode 100644 index b25461c6..00000000 Binary files a/content/our-team/members/Jyoti.jpg and /dev/null differ diff --git a/content/our-team/members/RSE_ASIA.png b/content/our-team/members/RSE_ASIA.png deleted file mode 100644 index 78283abf..00000000 Binary files a/content/our-team/members/RSE_ASIA.png and /dev/null differ diff --git a/content/our-team/members/RSE_Asia_Association_Logo.jpg b/content/our-team/members/RSE_Asia_Association_Logo.jpg deleted file mode 100644 index 126e97b6..00000000 Binary files a/content/our-team/members/RSE_Asia_Association_Logo.jpg and /dev/null differ diff --git a/content/our-team/members/css.md b/content/our-team/members/css.md deleted file mode 100644 index 72654913..00000000 --- a/content/our-team/members/css.md +++ /dev/null @@ -1,32 +0,0 @@ -+++ -title = "Code for Science & Society" -weight = 33 -date = "2024-04-16" - -position = "Fiscal Sponsor" - -[[icons]] - icon = "fab fa-twitter" - text = "Twitter" - url = "https://twitter.com/codeforsociety" - -[[icons]] - icon = "fa fa-globe" - text = "Website" - url = "https://www.codeforsociety.org/" - -[[icons]] - icon = "fab fa-linkedin-in" - text = "Linkedin" - url = "https://www.linkedin.com/company/code-for-societyy" - -[asset] - image = "CSS_square.png" - text = "Code for Science & Society" - -+++ - -[Code for Science and Society](https://codeforscience.org/) (CS&S) is ReSA’s fiscal sponsor. CS&S partner with leaders across public interest technology through comprehensive fiscal sponsorship. Projects in the fiscal sponsorship program are supported with financial and operational services. Their approach includes strategic support to develop governance, sustainability, and community strategies. - -[Email CS&S](mailto:hi@codeforsociety.org). - diff --git a/content/our-team/members/index.md b/content/our-team/members/index.md deleted file mode 100644 index dd350e4b..00000000 --- a/content/our-team/members/index.md +++ /dev/null @@ -1,10 +0,0 @@ -+++ -fragment = "member" -#disabled = false -date = "2021-04-01" -weight = 120 -background = "white" - -title = "ReSA Team" -title_align = "center" # Default is center, can be left, right or center -+++ diff --git a/content/our-team/members/jessica.jpg b/content/our-team/members/jessica.jpg deleted file mode 100644 index d023ea21..00000000 Binary files a/content/our-team/members/jessica.jpg and /dev/null differ diff --git a/content/our-team/members/jyoti.md b/content/our-team/members/jyoti.md deleted file mode 100644 index f74b062e..00000000 --- a/content/our-team/members/jyoti.md +++ /dev/null @@ -1,29 +0,0 @@ -+++ -title = "Jyoti Bhogal" -weight = 30 -date = "2024-09-27" - -position = "Community Manager & Community Engagement Partner (Asia)" -lives_in = "India" - -[[icons]] - icon = "fab fa-github" - text = "Github" - url = "https://github.com/jyoti-bhogal" - -[[icons]] - icon = "fab fa-linkedin-in" - text = "Linkedin" - url = "https://www.linkedin.com/in/jyoti-bhogal/" - -[asset] - image = "Jyoti_square.jpeg" - text = "Jyoti Bhogal" -+++ - -Jyoti joined ReSA in 2024 as a Community Manager and Community Engagement Partner for Asia, supported by a grant from the Alfred P. Sloan Foundation. -She is a statistician by training, having 4+ years of specialised experience in clinical trial software development and data management. She is based in India. In 2021, she co-founded the [Research Software Engineering (RSE) Asia Association](https://rse-asia.github.io/RSE_Asia/) through the [Open Life Science](https://we-are-ols.org/) program (cohort-4), with the mission to promote and build the RSE community and profession in the Asian region while also fostering global collaborations. -Jyoti has been a PyData Global Impact scholar (2021). She is a keen advocate of open source and open science and actively engages and contributes to these communities locally and internationally. - - -[Email Jyoti Bhogal](mailto:jyoti@researchsoft.org). diff --git a/content/our-team/members/kim.md b/content/our-team/members/kim.md deleted file mode 100644 index 8d4031ea..00000000 --- a/content/our-team/members/kim.md +++ /dev/null @@ -1,34 +0,0 @@ -+++ -title = "Kim Hartley" -weight = 30 -date = "2022-01-21" - -position = "Program Manager" -lives_in = "Canada" - -[[icons]] - icon = "fab fa-github" - text = "Github" - url = "https://github.com/Kim-hartley" - -[[icons]] - icon = "fab fa-linkedin-in" - text = "Linkedin" - url = "https://www.linkedin.com/in/kim-hartley-456808232/" - -[asset] - image = "kim_sq.jpg" - text = "Kim Hartley" -+++ - -Kim joined ReSA in 2022, with support from the [Digital Research Alliance of Canada](https://alliancecan.ca/), to facilitate the -[Research Software Funders Forum](https://www.researchsoft.org/funders-forum/), a formal mechanism for international funding organisations to collaborate. -Kim supports the Funders Forum by engaging the community in collaborative activities designed to share practices and address common challenges, with the -intention of advancing the research software ecosystem. - -A social anthropologist by training, Kim brings a passion for understanding the ways in which people live in different social and cultural settings -globally to her work managing communities. She has extensive experience in academic research administration, including managing research ethics boards, -advising diverse stakeholders, and building partnerships. Through her work in the broader public sector, Kim has facilitated a variety of research, -scholarly, and creative activities. - -[Email Kim Hartley](mailto:kim@researchsoft.org). diff --git a/content/our-team/members/michelle.md b/content/our-team/members/michelle.md deleted file mode 100644 index 72eed61e..00000000 --- a/content/our-team/members/michelle.md +++ /dev/null @@ -1,30 +0,0 @@ -+++ -title = "Dr Michelle Barker" -weight = 28 -date = "2021-04-01" - -position = "Director" -lives_in = "Australia" - -[[icons]] - icon = "fab fa-linkedin-in" - text = "Linkedin" - url = "https://www.linkedin.com/in/michelledbarker/" - -[[icons]] - icon = "fab fa-twitter" - text = "Twitter" - url = "https://twitter.com/Michelle1Barker" - -[asset] - image = "michelle.jpg" - text = "Michelle Barker" -+++ - -Michelle co-founded ReSA in 2019 and brings extensive expertise in open science, research software, skills and infrastructure. As a sociologist, Michelle is passionate about building collaborative partnerships to achieve system change. - -She serves on advisory boards including for the [European Virtual Institute for Research Software Excellence](https://everse.software/) (EVERSE) and the [Research Data Alliance Organisational Advisory Board](https://rd-alliance.org/about-rda/our-leadership/rda-organisational-advisory-board.html). As a [consultant in the field of open science](https://www.linkedin.com/in/michelledbarker/) her roles have included chairing the OECD expert group on [digital skills for the research sector](https://www.oecd-ilibrary.org/science-and-technology/building-digital-workforce-capacity-and-skills-for-data-intensive-science_e08aa3bb-en) and co-editing the European Open Science Cloud report, [Digital Skills for FAIR and Open Science](https://www.eoscsecretariat.eu/news-opinion/digital-skills-fair-open-science-report-eosc-skills-training-working-group). - -Michelle is a former Director of the [Australian Research Data Commons](https://ardc.edu.au/), where she led the strategic planning for the Australian government’s $180 million, five-year investment in ARDC, and the [national research software infrastructure investment program](https://nectar.org.au/labs/). - -[Email Michelle Barker](mailto:michelle@researchsoft.org). diff --git a/content/our-team/members/saranjeet.jpg b/content/our-team/members/saranjeet.jpg deleted file mode 100644 index fec4ebf7..00000000 Binary files a/content/our-team/members/saranjeet.jpg and /dev/null differ diff --git a/content/our-team/members/talarify.md b/content/our-team/members/talarify.md deleted file mode 100644 index b1f3bb95..00000000 --- a/content/our-team/members/talarify.md +++ /dev/null @@ -1,35 +0,0 @@ -+++ -title = "Talarify" -weight = 31 -date = "2023-02-16" - -position = "Community Engagement Partner (Africa)" -lives_in = "South Africa" - -[[icons]] - icon = "fab fa-twitter" - text = "Twitter" - url = "https://twitter.com/talarify" - -[[icons]] - icon = "fa fa-globe" - text = "Website" - url = "https://talarify.co.za" - -[[icons]] - icon = "fab fa-linkedin-in" - text = "Linkedin" - url = "https://za.linkedin.com/company/talarify" - -[asset] - image = "talarify-people.png" - text = "Talarify logo" -+++ - -Talarify joined ReSA in 2023 to support community growth in Africa, with funding by a [grant](https://doi.org/10.5281/zenodo.7275397) from the Chan Zuckerberg Initiative. - -The South African-based consulting company has been involved in numerous continental initiatives related to research software, including The Carpentries, Africa R Users, and afrimapr. It has also been engaged in global Research Software Engineering (RSE) initiatives such as the [International RSE Survey](https://github.com/softwaresaved/international-survey), and since 2022 has led [RSSE-Africa](https://rsse.africa) meetups, member showcases, and more. Through their involvement in these initiatives, the Talarify team has learned much about the local communities and has established connections with researchers involved in coding and research infrastructure across the continent. - -Talarify executive director, Anelda van der Walt has a background in bioinformatics and 20 years of experience in supporting the development of digital and computational research skills and communities and bridging the Global North and South. - -[Email Anelda at Talarify](mailto:anelda@talarify.co.za). diff --git a/content/our-team/michelle-200x200.png b/content/our-team/michelle-200x200.png deleted file mode 100644 index 182fed36..00000000 Binary files a/content/our-team/michelle-200x200.png and /dev/null differ diff --git a/content/our-team/michelle-255x300.png b/content/our-team/michelle-255x300.png deleted file mode 100644 index 3abc3237..00000000 Binary files a/content/our-team/michelle-255x300.png and /dev/null differ diff --git a/content/people/index.md b/content/people/index.md new file mode 100644 index 00000000..c10a00e2 --- /dev/null +++ b/content/people/index.md @@ -0,0 +1,26 @@ +--- +title: People +date: 2022-10-24 + +type: landing + +sections: + - block: people + content: + title: Meet the Team + # Choose which groups/teams of users to display. + # Edit `user_groups` in each user's profile to add them to one or more of these groups. + user_groups: + - Principal Investigators + - Researchers + - Grad Students + - Administration + - Visitors + - Alumni + sort_by: Params.last_name + sort_ascending: true + design: + show_interests: false + show_role: true + show_social: true +--- \ No newline at end of file diff --git a/content/policy/10-policy-header/index.md b/content/policy/10-policy-header/index.md deleted file mode 100644 index 68281ca4..00000000 --- a/content/policy/10-policy-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2021-04-28" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Policy" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/policy/20-content.md b/content/policy/20-content.md deleted file mode 100644 index fbe5fd23..00000000 --- a/content/policy/20-content.md +++ /dev/null @@ -1,9 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2021-04-28" -weight = 20 -background = "white" -+++ - -Work in progress diff --git a/content/policy/_index.md b/content/policy/_index.md new file mode 100644 index 00000000..5817181d --- /dev/null +++ b/content/policy/_index.md @@ -0,0 +1,43 @@ +--- +title: +date: 2021-04-28 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Policy + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + - block: markdown + content: + title: + text: | +
+
+ Work in progress +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- diff --git a/content/policy/index.md b/content/policy/index.md deleted file mode 100644 index 90eb41a8..00000000 --- a/content/policy/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Policy" -date = "2021-04-28" -+++ diff --git a/content/privacy-policy/10-pp-header/index.md b/content/privacy-policy/10-pp-header/index.md deleted file mode 100644 index 00d3a2af..00000000 --- a/content/privacy-policy/10-pp-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2023-03-28" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/privacy-policy/_index.md b/content/privacy-policy/_index.md new file mode 100644 index 00000000..cdf5e04b --- /dev/null +++ b/content/privacy-policy/_index.md @@ -0,0 +1,43 @@ +--- +title: +date: 2023-03-28 +type: landing + +sections: + - block: markdown + content: + title: + text: + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + - block: markdown + content: + title: + text: | +
+
+ +
+ +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- \ No newline at end of file diff --git a/content/privacy-policy/content.md b/content/privacy-policy/content.md deleted file mode 100644 index 25e03440..00000000 --- a/content/privacy-policy/content.md +++ /dev/null @@ -1,12 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2023-03-28" -weight = 110 -background = "white" - -title = "ReSA Privacy Policy" -#subtitle = "" -+++ - -
diff --git a/content/privacy-policy/index.md b/content/privacy-policy/index.md deleted file mode 100644 index 6d0b5121..00000000 --- a/content/privacy-policy/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "" -date = "2023-03-28" -+++ diff --git a/content/pubsoft-forum/10-header/index.md b/content/pubsoft-forum/10-header/index.md deleted file mode 100644 index 5c01a258..00000000 --- a/content/pubsoft-forum/10-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2025-05-15" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Publishing Research Software (PubSoft) Forum" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/pubsoft-forum/20-content.md b/content/pubsoft-forum/20-content.md deleted file mode 100644 index 6b563b6a..00000000 --- a/content/pubsoft-forum/20-content.md +++ /dev/null @@ -1,32 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2025-05-15" -weight = 20 -background = "white" -+++ - -The Publishing Research Software (PubSoft) Forum is a collaboration of publishers committed to supporting research software, and those who develop it, as fundamental and vital to research. Publishers are organisations/initiatives that share academic research and scholarship. This includes both traditional publishers that publish text and/or software papers. - -Software has become an essential constituent of research and research software is starting to be seen as an equal partner of research data in key international policy documents such as UNESCO and the OECD. However, support and recognition of the importance of research software and the people who develop and maintain it, has failed to keep pace with the scale of use of research software in research. - -The PubSoft Forum provides a formal mechanism for members to share practices and consider how to individually and collectively address common challenges to achieve the significant cultural change needed across the research sector globally. It aims to address topics such as: - -- Policy alignment -- Policy implementation -- Incentives and enforcements to support researcher citation of research software -- Audit of current publisher practices to improve research software metadata quality and quality of software records, to work towards standardisation -- Consistent approaches to monitoring, benchmarking and measuring progress -- Alignment with broader efforts to improve citation of other digital objects - -For further information, please refer to the [**Terms of Reference**](https://docs.google.com/document/d/1LtuVSJ4cZzvlMivlb7tdAafBKSaHMdJWEmfg-OrLV2A/edit?usp=sharing) - -Membership is open to any publishers that share academic research and scholarship, including both traditional publishers that publish text and/or software papers. - -Examples of/types: -- Traditional academic journals (e.g., F1000, PLOS, Taylor & Francis, IEEE) -- Disciplinary academic journals (e.g., American Geophysical Union (AGU)) -- Publisher consortia (e.g., STM Association) - -Members can suggest other organisations that support research software publishing to join, or potential participants can contact [ReSA](mailto:info@researchsoft.org) for information on joining. - diff --git a/content/pubsoft-forum/index.md b/content/pubsoft-forum/index.md deleted file mode 100644 index c3b6bdb8..00000000 --- a/content/pubsoft-forum/index.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "Publishing Research Software Forum" -date = "2025-05-15" -+++ - - diff --git a/content/resa-resources/10-resources-header/index.md b/content/resa-resources/10-resources-header/index.md deleted file mode 100644 index f3964b4d..00000000 --- a/content/resa-resources/10-resources-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2020-07-24" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Resources" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/resa-resources/20-content.md b/content/resa-resources/20-content.md deleted file mode 100644 index d47ab686..00000000 --- a/content/resa-resources/20-content.md +++ /dev/null @@ -1,53 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2020-07-21" -weight = 20 -background = "white" - -+++ - -## ReSA Outputs - -ReSA outputs can provide useful references to support recognition and valuing of research software as a key component of research, and can also be found in the ReSA [Zenodo community](https://zenodo.org/communities/resa/?page=1&size=20). See also the [**ADORE.software Toolkit**](https://adore.software/toolkit/). The toolkit is where ReSA amalgamates many resources. It provides examples of programs, policies, and resources for each of the [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/)’s recommendations in the four areas of research software practice, research software ecosystem, research software personnel, and research software ethics. - -Recent outputs include: - -* [Research Software Funding Opportunities](https://www.researchsoft.org/funding-opportunities/) - updated regularly. -* [Research institution policies to support research software - Collection](https://docs.google.com/spreadsheets/d/1YgXG1eSrby8e5wzqYOiOZW6KmJtR-wdBTrjr1_aMtF4/edit#gid=0) - updated regularly. -* [Resources on how to create a research software engineering (RSE) group (within an organisation) or association (national, etc)](https://doi.org/10.5281/zenodo.14025417), 2024. -* [Research software is critical to the future of AI-driven research](https://doi.org/10.5281/zenodo.13350747), 2024. -* [The FAIR for Research Software Principles after two years: an adoption update](https://www.researchsoft.org/blog/2024-03/), 2024. -* [Investing in People: Anticipating the Future of Research Software](https://www.researchsoft.org/blog/2023-10/), 2023. -* [How Can Open Source Program Offices (OSPOs) Support Research Software?](https://www.researchsoft.org/blog/2023-06/), 2023. -* [Global gathering of research software funders sets the agenda for supporting sustainable research software](https://zenodo.org/record/7384410), 2022. -* [Encouraging entry, retention, diversity and inclusion in research software careers](https://www.researchsoft.org/blog/2022-09/), 2022. -* [FAIR Principles for Research Software](https://rd-alliance.org/group/fair-research-software-fair4rs-wg/outcomes/fair-principles-research-software-fair4rs-0), 2022, which were introduced in this [article](https://www.nature.com/articles/s41597-022-01710-x) in *Scientific Data*. -* [Vive la diffΓ©rence - research software engineers](https://www.researchsoft.org/blog/2022-07/), outcomes of a hybrid workshop on centralising diversity, equity and inclusion at the heart of research software engineering, 2022. -* [Research software is essential for research data, so how should governments respond?](https://www.researchsoft.org/blog/2021-12/), 2021. -* [ReSA People Roadmap](https://www.researchsoft.org/documents/people-roadmap.pdf), 2021. -* [Overview of research software funding landscape](https://www.researchsoft.org/blog/2022-02-24/), 2021. -* [Research software landscape analysis](https://doi.org/10.5281/zenodo.3699950), 2020. -* [ReSA Response to US RFI: Public Access to Peer-Reviewed Scholarly Publications, Data and Code Resulting From Federally Funded Research](https://doi.org/10.5281/zenodo.3828148), 2020. -* [RDA COVID-19 Guidelines and Recommendations](https://doi.org/10.15497/rda00052) contains a software chapter coordinated by ReSA that provides guidelines to policy makers, funders, publishers, and the research community responding to COVID-19, 2020. -* [Evidence for the importance of research software](https://zenodo.org/record/3884311#.YeV3C1hBzJw), 2020. - -## Evidence for the importance of research software - -The significant role that software plays in research has been identified in a range of surveys and studies that include the following: - -* [Research Software - What to fund?](https://zenodo.org/records/10651247) summarises the results of an international survey that collected information from researchers worldwide on their expectations concerning an international funding call to support the development and enhancement of research software. The survey, conducted by the [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/) working group on a multilateral funding call for research software, demonstrates a widespread interest in such an initiative and the areas in which such a call could be successful. -* [New data reveals the hidden impact of open source in science](https://medium.com/czi-technology/new-data-reveals-the-hidden-impact-of-open-source-in-science-11cc4a16fea2): The Chan Zuckerberg Initiative has released a dataset entirely composed of 67 million software mentions mined from the scientific literature, to understand how widely research software and open source tools are used across disciplines. -* [The role of software in science: a knowledge graph-based analysis of software mentions in PubMed Central](https://doi.org/10.7717/peerj-cs.835) provides insights into the evolution of software usage and citation patterns across various fields, ranks of journals, and impact of publications. -* [Charting the digital transformation of science: Findings from the 2018 OECD International Survey of Scientific Authors (ISSA2)](https://www.oecd-ilibrary.org/science-and-technology/charting-the-digital-transformation-of-science_1b06c47c-en) includes evidence that 25% of research produces new code. -* [Software and skills for research computing in the UK](https://doi.org/10.5281/zenodo.10473186) reports that 97% of survey participants see software as important as their own research, with 85% citing it as essential. -* [The Ecosystem of Technologies for Social Science Research](https://uk.sagepub.com/en-gb/eur/technologies-for-social-science-research) tracks increase in the use of software tools, along with characteristics of key tools. It is noted that whilst many commercial tools are available, the more innovative ones are coming out of academia. -* [The top 100 papers](https://www.nature.com/articles/514550a) analyses the top 100 _Nature_ papers and finds that the vast majority describe experimental methods or software that have become essential in their fields. -* [UK Research Software Survey](https://doi.org/10.5281/zenodo.14809) considers responses of 1,000 randomly chosen researchers to show that more than 90% of researchers acknowledged software as being important for their own research, and about 70% of researchers said that their research would not be possible without software. -* [Understanding Software in Research: Initial Results from Examining Nature and a Call for Collaboration](https://arxiv.org/abs/1706.06527) reveals that β€œ32 of the 40 papers examined mention software, and the 32 papers contain 211 mentions of distinct software, for an average of 6.5 mentions per paper.” - -Do you have resources to add? - -* Add [new calls](https://forms.gle/r4Jw4swUd1SXigZc9) to the [Research Software Funding Opportunities](https://www.researchsoft.org/funding-opportunities/) -* Submit a resource as an issue in [GitHub](https://github.com/researchsoft/website/issues/new) (requires GitHub account) -* [Email it directly to ReSA](mailto:info@researchsoft.org) diff --git a/content/resa-resources/80-carole-goble-quote.md b/content/resa-resources/80-carole-goble-quote.md deleted file mode 100644 index cb74a8b3..00000000 --- a/content/resa-resources/80-carole-goble-quote.md +++ /dev/null @@ -1,15 +0,0 @@ -+++ -fragment = "buttons" -#disabled = false -date = "2020-10-19" -weight = 90 -background = "secondary" - -title = "Software is the ubiquitous instrument of science." -#subtitle = "" - -[[buttons]] - text = "Carole Goble, Professor of Computer Science, University of Manchester, UK" - url = "https://www.raeng.org.uk/diversity-in-engineering/diversity-and-inclusion-at-the-academy/celebrating-leading-women-in-engineering/carole-globe" - color = "link" -+++ diff --git a/content/resa-resources/index.md b/content/resa-resources/index.md deleted file mode 100644 index 692433b9..00000000 --- a/content/resa-resources/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Resources" -date = "2020-07-21" -+++ \ No newline at end of file diff --git a/content/research-software-engineers/10-rse-header/index.md b/content/research-software-engineers/10-rse-header/index.md deleted file mode 100644 index b83b90c5..00000000 --- a/content/research-software-engineers/10-rse-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2024-11-14" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Research Software Engineers (RSEs)" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/research-software-engineers/20-content.md b/content/research-software-engineers/20-content.md deleted file mode 100644 index b276f9e6..00000000 --- a/content/research-software-engineers/20-content.md +++ /dev/null @@ -1,37 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2024-11-15" -weight = 20 -background = "white" -+++ - -ReSA aims to coordinate discussions across a wide range of research software organisations and programs. Our [stakeholders](https://www.researchsoft.org/stakeholders/) include funders, policy-makers, research software engineer associations, infrastructure providers, university consortia, publishers, and thematic communities. - -ReSA is the secretariat for the [International Council of RSE Associations](https://researchsoftware.org/council.html) – we work with leaders in the research software engineering community through the Council. The following ReSA resources might be of interest to both leaders and individual RSEs: - -- [Resources on how to create a research software engineering (RSE) group (within an organisation) or association (national, etc)](https://doi.org/10.5281/zenodo.14025417): ReSA has collated existing advice, some of which are also collated in resources such as [RSE Groups in the UK; Origins, Organisational Context, and Practices \- β€˜RSE Roadtrip’ Planning Document](https://zenodo.org/records/7852661#.ZFoEdexBwU6) by Kim Martin, [CommuneRS: A Community of Research Software Communities](https://github.com/EllaKaye/communers?tab=readme-ov-file) by Ella Kaye et al., [ADORE.software toolkit](https://adore.software/toolkit/) by ReSA, and [RSE Resources](https://us-rse.org/resources/rses/) by US-RSE. Contributions are welcome either as comments in the [document](https://docs.google.com/document/d/1pQTBTApvwr0G61M1m8h4BypAorWFe6heiiZWwWk7ZY8/edit?tab=t.0) itself, or by emailing [info@researchsoft.org](mailto:info@researchsoft.org). -- Joint ReSA and Research Data Alliance Working Group on [Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/forum/) -- [Research Software Funding Opportunities Database](https://www.researchsoft.org/funding-opportunities/): ReSA has created this public database of current and past research software funding opportunities to improve the findability of this important information. Members of the community can add current funding opportunities via this [short form](https://forms.gle/r4Jw4swUd1SXigZc9). -- [ADORE.software toolkit](https://adore.software/toolkit/): The toolkit aims to support implementation of the [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/). It provides examples of funder programs, policies, and resources for each of the Declaration’s recommendations in the four areas of research software practice, research software ecosystem, research software personnel, and research software ethics. -- ReSA’s monthly [newsletters](https://www.researchsoft.org/news/) (subscribe [here](https://dashboard.mailerlite.com/forms/778129/110635094443558050/share)). -- [Research institutional policies to support research software](https://www.researchsoft.org/software-policies/) \- add your organisation’s policy to it [via this form](https://docs.google.com/forms/d/e/1FAIpQLSenXMgY6c5IDpjvSxfXOWfMwvK8CNrWNFwqZNRgqqRYyyqVJg/viewform) or through a comment in the [google sheet](https://docs.google.com/spreadsheets/d/1YgXG1eSrby8e5wzqYOiOZW6KmJtR-wdBTrjr1_aMtF4/edit#gid=0). -- ReSA [task forces](https://www.researchsoft.org/taskforces/) -- ReSA [Zenodo community](https://zenodo.org/communities/resa/?page=1&size=20) -- ReSA [resources](https://www.researchsoft.org/resa-resources/#), [guidelines](https://www.researchsoft.org/guidelines/), [events](https://www.researchsoft.org/events/), and [blog](https://www.researchsoft.org/blog/) -- ReSA [LinkedIn](https://www.linkedin.com/company/research-software-alliance/), [Mastodon](https://fosstodon.org/@researchsoft), and [Slack](https://join.slack.com/t/researchsoft/shared_invite/zt-1flmrglww-SoWjAK_5TJyqLU_~Jx697w) - -## International RSE associations: - -* [BE-RSE \- Belgium Research Software Engineers](https://be-rse.org/) -* [Danish RSE \- Danish Research Software Engineers Community](https://pure.au.dk/portal/da/projects/danish-rse) -* [DevLOG \- French Research Software Engineers](https://www.devlog.cnrs.fr/) -* [DE-RSE \- Society for Research Software in Germany](http://de-rse.org/) -* [NL-RSE \- the Netherlands Research Software Engineers community](http://nl-rse.org/) -* [Nordic-RSE \- Nordic Research Software Engineers](http://nordic-rse.org/) -* [Rscan \- Research Software Canada](https://github.com/alliancecan/RSCAN) -* [RSE Asia Association](https://rse-asia.github.io/RSE_Asia/) -* [RSE-AUNZ \- RSE Association of Australia and New Zealand](https://rse-aunz.github.io/) -* [RSSE Africa](https://rsse.africa/) -* [Soc-RSE \- UK Society of Research Software Engineering](https://society-rse.org/) -* [US-RSE \- United States Research Software Engineer Association](https://us-rse.org/) \ No newline at end of file diff --git a/content/research-software-engineers/index.md b/content/research-software-engineers/index.md deleted file mode 100644 index 10496d27..00000000 --- a/content/research-software-engineers/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Research Software Engineers (RSEs)" -date = "2024-11-14" -+++ diff --git a/content/resource/_index.md b/content/resource/_index.md new file mode 100644 index 00000000..8bc9f1d4 --- /dev/null +++ b/content/resource/_index.md @@ -0,0 +1,5 @@ +--- +title: Research Software Funding Opportunities +date: 2025-06-10 +type: landing +--- \ No newline at end of file diff --git a/content/resource/funding-opportunities/_index.md b/content/resource/funding-opportunities/_index.md new file mode 100644 index 00000000..98240f43 --- /dev/null +++ b/content/resource/funding-opportunities/_index.md @@ -0,0 +1,44 @@ +--- +title: +date: 2025-06-10 +type: landing + +sections: + - block: + content: + title: Research Software Funding Opportunities + design: + spacing: + padding: ["4rem", "2rem"] + + + - block: markdown + content: + title: + text: | + +
+
+ + ReSA has created this public database of current and past research software funding opportunities to improve the findability of this important information. Members of the community can add current funding opportunities via this **[short form](https://forms.gle/r4Jw4swUd1SXigZc9)**. Funding opportunities are also posted in our [newsletter](/news/), on [Mastodon](https://fosstodon.org/@researchsoft), [Twitter](https://twitter.com/researchsoft) and [Slack](https://researchsoft.slack.com/). + + This database focuses on funding calls or programs that are **targeted at research software** and/or those who develop and maintain it (such as research software engineers). The database does not include broader funding calls for which research software is one of many options for investment, such as research projects in general, open science, open infrastructure, etc. + +
+
+ + + + *Please note that the information in this database may not be accurate or up to date. + +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- \ No newline at end of file diff --git a/content/resource/guidelines/_index.md b/content/resource/guidelines/_index.md new file mode 100644 index 00000000..b011cb5d --- /dev/null +++ b/content/resource/guidelines/_index.md @@ -0,0 +1,228 @@ +--- +title: +date: 2025-07-09 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Guidelines + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + - block: markdown + content: + title: + text: | + +
+
+ + To help you identify key resources this page highlights those + relevant to each of the ReSA themes: people, policy and + infrastructure. These resources are mostly international + recommendations, reports and guidelines that emphasise best practice. + + See also the **[ADORE.software Toolkit](https://adore.software/toolkit/)**. The toolkit provides examples of funder programs, policies, and resources for each of the [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/)'s recommendations in the four areas of research software practice, research software ecosystem, research software personnel, and research software ethics. + + ## People + + - [Foundational Competencies and Responsibilities of a Research Software Engineer](http://arxiv.org/abs/2311.11457) by Florian Goth et al. (2023) explores educational paths for RSEs. The authors define what an RSE is, explore different types of work RSEs undertake, and define the fundamental competencies as well as values that represent the general profile of an RSE. + - [Research Software Engineering (RSE) International Survey](https://softwaresaved.github.io/international-survey-2022/): 2022 results now available to help understand the RSE community, inform policies and create incentives that advance RSE interests, building on the 2018 and 2016 survey results. + - [Why science needs more research software engineers](https://www.nature.com/articles/d41586-022-01516-2), 2022. + - [Visibility of Research Software Engineers in research funding](https://www.software.ac.uk/blog/visibility-research-software-engineers-research-funding), 2022. The Software Sustainability Institute poses the question: is there enough awareness of this role when granting applications are developed and costed? + - [The Four Pillars of Research Software Engineering](https://ieeexplore.ieee.org/document/8994167), 2021. Cohen et al. present four elements they believe are key to providing a comprehensive and sustainable support for research software engineering: software development, community, training, and policy. + + - [Understanding Equity, Diversity and + Inclusion Challenges Within the Research Software + Community](https://www.researchgate.net/publication/350647200_Understanding_Equity_Diversity_and_Inclusion_Challenges_Within_the_Research_Software_Community), 2021. + Analysis of 2018 international RSE survey provides evidence for a lack of diversity + in the Research Software Engineers community. This paper identifies + interventions which could address challenges and highlights areas where the community is + becoming more diverse. + + - ReSA [software landscape analysis](https://doi.org/10.5281/zenodo.3699950), 2020. + identifies 50+ stakeholders in the research software community and topics of interest, e.g., preservation, RSEs, + citation, productivity, sustainability. + + - [What do we know about RSEs?](https://www.software.ac.uk/blog/2018-03-12-what-do-we-know-about-rses-results-our-international-surveys) 2018. The Software Sustainability Institute analyses results from international + surveys in 2016, 2017 and 2018 to learn more about RSEs and their work conditions. + + - [UK Research Software + Survey](https://www.software.ac.uk/blog/2014-12-04-its-impossible-conduct-research-without-software-say-7-out-10-uk-researchers), 2014. Analysis highlights the importance of software in conducting research, e.g., that 92% of academics use research software. The dataset is also available. + - [The Research Software Engineer](https://epubs.stfc.ac.uk/work/63787), 2012. Baxter et al. provide a synthesis of discussions that took place during and after the 2012 Collaborations Workshop organized by the Software Sustainability Institute in Oxford, UK. + + - [Database of Diverse Databases](https://editorsofcolor.com/diverse-databases/). Useful for finding speakers for a more equitable world - see listings for "Coding + Tech", "Tech Policy" and "Science". + + + ## Policy + + - [Ten simple rules for funding scientific open source software](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1010627) by Strasser et al. provides guidance and considerations for funders and other community members interested in supporting scientific software; addressing specific issues related to software, including contributor community development, governance, and sustainability, based on experiences from the Chan Zuckerberg Initiative and Alfred P. Sloan Foundation program officers. + + - The Open Research Funders Group [Policy Clause Bank and Policy Generator](https://info.chanzuckerberg.com/e3t/Ctc/GE+113/cT9XL04/VXdH875Y98ntN92BRSZw9CKwW1zSvF_4MmrVHN6rgBr73q3pBV1-WJV7CgPRCF4WRDMg-46cW7t6Chn4NvkBKW56pN8066Z38DW6b0cxm611dv3W71WDyp7_0MTmN5JY4Zcm0gmwVH7XBN13Fg2wW6tm9Fg4l_zr1W4kf-5T8C8G-lW94xwLC6JN8fjW4vF0GJ3Pph7lW7gqtkn60fj2cW1T9Hmm7hyPYCW3QQvC_8-Lb_FW8--QtZ2HgSRsW7WpsR_20KLbRW8_zFTS98cpyxW4N0Hzm6Qx1WBW4n-_Jl70k_z2V_Jr7B51645CW5B9ty44kKmvkVvfj4k1WtJpwW8RGyr37hCYdrW8qdxwx80DxPsW6mF7Jz7gYzkrW8dM8K_2pNtzgW31g8Gr6-CxX8W5gm8K88z2HKFW7ClwK-7QCLtMW8NRTwb1Kjy-B37951) for open science policies includes a section on software code sharing. + + - [Evidence for the importance of research software](http://doi.org/10.5281/zenodo.3884311), 2020. This ReSA analysis + considers papers relating to meta-research, policy, community, education and training, research breakthroughs and specific software. + + - [ReSA Response to US RFI: Public Access to Peer-Reviewed + Scholarly Publications, Data and Code Resulting From Federally + Funded Research](http://doi.org/10.5281/zenodo.3828148), 2020. Focuses on how improving the recognition and value of research + software can increase the access to unclassified published research, digital scientific + data, and code supported by the US Government. + + - [Research software is essential for research data, so how should governments respond?](/blog/2021-12/), 2021. This ReSA blog post provides an overview of the current state of international adoption of research software policies and how different countries address these, in order to lay out concrete advice and examples for national governments wishing to update their policies. + + - [Six Recommendations for implementation of FAIR practice by the FAIR + in practice task force of the European Open Science Cloud FAIR + working + group](https://doi.org/10.2777/986252), 2020. + This report analyses the state of FAIR practices within diverse research communities and FAIR-related policies in different countries and offers six practical recommendations on how FAIR can be turned into practice. It includes a separate section details FAIR practice for digital objects other + than research data. + + ### International policies + + - OECD Council: In 2021 the OECD Council adopted a revised [Council Recommendation on Access to Research Data from Public Funding.](https://legalinstruments.oecd.org/en/instruments/OECD-LEGAL-0347) This legal instrument was revised for the first time to include software, meaning that OECD members (which include most research-intensive countries) will have to create policy and law to implement it. This recommendation, which is known as a β€œsoft law” legal instrument, has been updated to address new technologies and policy developments. It provides policy guidance in seven areas with an expanded scope to cover not only research data, but also related metadata as well as bespoke algorithms, workflows, models, and software (including code), which are essential for their interpretation. The OECD Council recommends fostering (and requiring where appropriate) the adoption of good practice for research data and software management across the research system, promoting data and software citation in academic practice (including the development of citation standards), training a cadre of research software engineers and enabling recognition and reward of software development skills as high value added to publicly funded research and innovation. + + - UNESCO: The UNESCO [Recommendation on Open Science](https://en.unesco.org/science-sustainable-future/open-science/recommendation) was unanimously adopted by member states in 2021. This recommendation defines open scientific knowledge as "open access to scientific publications, research data, metadata, open educational resources, software, and source code and hardware that are available in the public domain or under copyright and licensed under an open licence". In particular, the recommendation argues for users to gain free access to open source software and source code in a timely and user-friendly manner, in human- and machine-readable and modifiable format, under an open licence. The source code must be included in the software release and made available on openly accessible repositories, and the chosen licence must allow modifications, derivative works and sharing under equal or compatible open terms and conditions. See also the Checklist for Universities on Implementing the UNESCO Recommendation on Open Science and other elements of the [UNESCO Open Science Toolkit](https://unesdoc.unesco.org/search/N-ff1a192d-dcf3-45b7-abb0-4f5dbed6b46e). + + #### National and regional policies and strategies + + - Australia: [Australian National Agenda for Research Software](https://ardc.edu.au/project/research-software-agenda-for-australia/), 2021. Addresses recognition of research software as a first class output of research in Australia. + + - Canada: The [Tri-Agency Research Data Management Policy](https://science.gc.ca/site/science/en/interagency-research-funding/policies-and-guidelines/research-data-management/tri-agency-research-data-management-policy) includes code deposit as a requirement, in addition to data and other outputs; and that grantees have a publicly accessible strategy to support policy around research data/software management per the Policy. + + - Finland: [Policies of open science and research](https://avointiede.fi/en/policies/policies-open-science-and-research-finland) are being drafted for four areas: culture for open scholarship, open access to scholarly publications, open access of research data and methods, and open education and open access to educational resources. + + - European Union: [Scholarly infrastructures for research software (SIRS): Report from the EOSC Executive Board Working Group (WG) Architecture Task + Force](https://op.europa.eu/en/publication-detail/-/publication/145fd0f3-3907-11eb-b27b-01aa75ed71a1/language-en), 2020. Establishes a set of recommendations to allow the European Open Science Cloud (EOSC) to include software, next to other research outputs like publications and data, in the realm of its research artifacts. This work is built upon a survey and documentation of a representative panel of current operational infrastructures across Europe, comparing their scopes and approaches. This report summarises the state of the art, identifies best practices, as well as open problems, and paves the way for federating the different approaches in view of supporting the software pillar of EOSC. + + - France: French [National Plan for Open Science](https://www.ouvrirlascience.fr/second-national-plan-for-open-science/), 2021. Places software on a par with publications and data in research and Open Science. See also the [activities](https://www.ouvrirlascience.fr/research-software-as-a-pillar-of-open-science/) of the Software College of the French National Committee on Open Science and [Opportunity Note: Encouraging a wider usage of software derived from research](https://www.ouvrirlascience.fr/opportunity-note-encouraging-a-wider-usage-of-software-derived-from-research/). + + - Italy: The [Italian National Plan for Open Science](https://www.mur.gov.it/sites/default/files/2022-06/Piano_Nazionale_per_la_Scienza_Aperta.pdf) proposes an overall vision, with specific strategies for five axes of intervention, which must interact to create an open ecosystem of publications, data, analysis tools, networked ICT infrastructures and services, evaluation and training. + + - Netherlands: The [2021 National Roadmap for Large-Scale Research Facilities](https://www.nwo.nl/en/researchprogrammes/national-roadmap-for-large-scale-research-facilities) published by the Dutch Research Council (NWO) has made FAIR, sustainable software and a software management plan conditional to receiving funding. Software is central to the funding the NWO has made available for developing β€˜digital competence centres’ as part of the national roadmap, and the NWO has set up an [open science team](https://www.nwo.nl/en/open-science) to push this agenda. + + - New Zealand: The New Zealand eScience Initiative (NeSI) are sharing how they enable research communities to truly value the contributions of research software in underpinning contemporary science in [Contributing to local & global kōrero around the value, impacts and future of Research Software](https://www.nesi.org.nz/news/2022/11/contributing-local-global-k%C5%8Drero-around-value-impacts-and-future-research-software). + + - United Kingdom: The Government Office for Science’s report on [Large-scale computing: the case for greater UK coordination](https://www.gov.uk/government/news/coordinating-the-uks-large-scale-computing-ecosystem) recognises that β€œhigh-quality software is fundamental to realising the benefits of investments in computing” and recommends β€œsoftware development must keep pace with advances in hardware”. Recent reviews commissioned by individual research funders have echoed this including, BBSRC’s [Review of Data Intensive Bioscience](https://www.ukri.org/news/bbsrc-publishes-review-of-data-intensive-bioscience/). + + - USA: Major programs include the National Science Foundation (NSF)’s [Cyberinfrastructure for Sustained Scientific Innovation](https://www.nsf.gov/publications/pub_summ.jsp?ods_key=nsf21617) (CSSI) program and the Department of Energy’s (DoE) support for the [Interoperable Design of Extreme-scale Application Software](https://ideas-productivity.org/) (IDEAS) projects, as well as other significant software investments in its [Exascale Computing Project](https://www.exascaleproject.org/). + + ### Research institution policies + + ReSA is creating a listing of [institutional policies that support research software](/resource/software-policies/) in a range of organisations - please add to this or join the [task force](/taskforces/) undertaking this work. + + ## Infrastructure + + #### Software development + + - [Making Biomedical Research Software FAIR: Actionable Step-by-step Guidelines with a User-support Tool](https://doi.org/10.1038/s41597-023-02463-x), 2023. + + - [FAIR Principles for Research Software](https://doi.org/10.15497/RDA00068), 2022, introduced in this [article](https://www.nature.com/articles/s41597-022-01710-x) in *Scientific Data*. + + - [Practical Guide to Software Management Plans](https://zenodo.org/record/7185371) by the Dutch Research Council (NWO) and the Netherlands eScience Center, 2022. + + - [Nine Best Practices for Research Software Registries and + Repositories: A Concise Guide](https://arxiv.org/abs/2012.13117), 2020. These resources improve software + discoverability and research transparency, thereby supporting + research reproducibility and replicability. + + - [What does Research Software look like?](https://zenodo.org/records/7347700#.ZDgwtezMI1I), by Rob van Nieuwpoort, 2022. + + - "Research Software Sharing for Data Analysis" chapter of [RDA COVID-19 Guidelines and Recommendations](https://doi.org/10.15497/rda00052), 2020. Provides foundational, clear and practical recommendations around research software principles and practices, in order to facilitate open collaborations. + + - [Software development guide](https://guide.esciencecenter.nl) by Netherlands eScience Center. + + - [DLR Software Engineering Guidelines](https://doi.org/10.5281/zenodo.1344612), 2018. + + - [4 Open Source Software + Recommendations](https://softdev4research.github.io/4OSS-lesson/), 2018. + + - [Top 10 FAIR Data & Software Things: Research Software](https://librarycarpentry.org/Top-10-FAIR/2018/12/01/research-software/), 2018. + + - [Good enough practices in scientific computing](https://doi.org/10.1371/journal.pcbi.1005510), 2017. + + - [Data and Software Management Plans must be public and should be machine-readable](https://danielskatzblog.wordpress.com/2016/04/13/data-and-software-management-plans-must-be-public-and-should-be-machine-readable/), by Daniel S. Katz, 2016. + + + #### Software sharing and citation + + - [CHORUS Software Citation Policies Index](https://www.chorusaccess.org/resources/software-citation-policies-index/) provides assistance to authors and publishers. + + - [New data reveals the hidden impact of open source in science](https://medium.com/czi-technology/new-data-reveals-the-hidden-impact-of-open-source-in-science-11cc4a16fea2), 2022. + + - UK National Institutes of Health [Best Practices for Sharing Research Software](https://datascience.nih.gov/tools-and-analytics/best-practices-for-sharing-research-software-faq), 2021. + + - [Recognizing the value of software: A software citation guide](https://doi.org/10.12688/f1000research.26932.2), 2021. + + - [Software Citation Checklist for Authors](http://doi.org/10.5281/zenodo.3479199), 2019. + + - [Software Citation Checklist for Developers](http://doi.org/10.5281/zenodo.3482769), 2019. + + - [Software citation principles](https://doi.org/10.7717/peerj-cs.86), 2016. + + ## Lists of resources + + - [Software Heritage](https://www.softwareheritage.org) [General Index of Software Engineering Papers](https://doi.org/10.48550/arXiv.2204.03254) enables the review of outputs of software engineering, 2022. + + - [SSI guides for everything](https://www.software.ac.uk/resources/guides). Guides for researchers, managers, developers, instructors and + content distributors. + + - [SSI list of resources about various topics](https://www.software.ac.uk/resource-hub). Includes policy, + journals, open access, reproducibility, RSEs, training, etc. + + + - [Better Scientific Software (BSSw)](https://bssw.io/items?page=1&view=all). Resources for developer productivity and software sustainability. + + - [Research Software Engineers International](https://researchsoftware.org/). Includes a list of national/multinational RSE associations. + + ## Do you have resources to add? + + - Submit a new resource as an issue via + [*GitHub*](https://github.com/researchsoft/website/issues/new) + (requires a GitHub account) + - [Email it directly to ReSA](mailto:info@researchsoft.org). + +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: +
+
+ + To increase research impact and recognise the role that software plays in it, it is critical to build the Research Software Engineering community and profession in all geographic regions, while also fostering global collaborations. + +
+
+ + subtitle: + text:

Saranjeet Kaur Bhogal, Fellow 2023, Software Sustainability Institute, India

+ design: + background: + color: "#f98c01" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] +--- \ No newline at end of file diff --git a/content/resource/resa-resources/_index.md b/content/resource/resa-resources/_index.md new file mode 100644 index 00000000..1d43455e --- /dev/null +++ b/content/resource/resa-resources/_index.md @@ -0,0 +1,108 @@ +--- +title: +date: 2025-07-08 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Resources + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + - block: markdown + content: + title: + text: | + +
+
+ + ## ReSA Outputs + + ReSA outputs can provide useful references to support recognition and valuing of research software as a key component of research, and can also be found in the ReSA [Zenodo community](https://zenodo.org/communities/resa/?page=1&size=20). See also the [**ADORE.software Toolkit**](https://adore.software/toolkit/). The toolkit is where ReSA amalgamates many resources. It provides examples of programs, policies, and resources for each of the [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/)’s recommendations in the four areas of research software practice, research software ecosystem, research software personnel, and research software ethics. + + Recent outputs include: + + * [Research Software Funding Opportunities](/resource/funding-opportunities/) - updated regularly. + * [Research institution policies to support research software - Collection](https://docs.google.com/spreadsheets/d/1YgXG1eSrby8e5wzqYOiOZW6KmJtR-wdBTrjr1_aMtF4/edit#gid=0) - updated regularly. + * [Resources on how to create a research software engineering (RSE) group (within an organisation) or association (national, etc)](https://doi.org/10.5281/zenodo.14025417), 2024. + * [Research software is critical to the future of AI-driven research](https://doi.org/10.5281/zenodo.13350747), 2024. + * [The FAIR for Research Software Principles after two years: an adoption update](/blog/2024-03/), 2024. + * [Investing in People: Anticipating the Future of Research Software](/blog/2023-10/), 2023. + * [How Can Open Source Program Offices (OSPOs) Support Research Software?](/blog/2023-06/), 2023. + * [Global gathering of research software funders sets the agenda for supporting sustainable research software](https://zenodo.org/record/7384410), 2022. + * [Encouraging entry, retention, diversity and inclusion in research software careers](/blog/2022-09/), 2022. + * [FAIR Principles for Research Software](https://rd-alliance.org/group/fair-research-software-fair4rs-wg/outcomes/fair-principles-research-software-fair4rs-0), 2022, which were introduced in this [article](https://www.nature.com/articles/s41597-022-01710-x) in *Scientific Data*. + * [Vive la diffΓ©rence - research software engineers](/blog/2022-07/), outcomes of a hybrid workshop on centralising diversity, equity and inclusion at the heart of research software engineering, 2022. + * [Research software is essential for research data, so how should governments respond?](/blog/2021-12/), 2021. + * [ReSA People Roadmap](https://www.researchsoft.org/documents/people-roadmap.pdf), 2021. + * [Overview of research software funding landscape](/blog/2022-02-24/), 2021. + * [Research software landscape analysis](https://doi.org/10.5281/zenodo.3699950), 2020. + * [ReSA Response to US RFI: Public Access to Peer-Reviewed Scholarly Publications, Data and Code Resulting From Federally Funded Research](https://doi.org/10.5281/zenodo.3828148), 2020. + * [RDA COVID-19 Guidelines and Recommendations](https://doi.org/10.15497/rda00052) contains a software chapter coordinated by ReSA that provides guidelines to policy makers, funders, publishers, and the research community responding to COVID-19, 2020. + * [Evidence for the importance of research software](https://zenodo.org/record/3884311#.YeV3C1hBzJw), 2020. + + ## Evidence for the importance of research software + + The significant role that software plays in research has been identified in a range of surveys and studies that include the following: + + * [Research Software - What to fund?](https://zenodo.org/records/10651247) summarises the results of an international survey that collected information from researchers worldwide on their expectations concerning an international funding call to support the development and enhancement of research software. The survey, conducted by the [Research Software Funders Forum](/forums/funders-forum/) working group on a multilateral funding call for research software, demonstrates a widespread interest in such an initiative and the areas in which such a call could be successful. + * [New data reveals the hidden impact of open source in science](https://medium.com/czi-technology/new-data-reveals-the-hidden-impact-of-open-source-in-science-11cc4a16fea2): The Chan Zuckerberg Initiative has released a dataset entirely composed of 67 million software mentions mined from the scientific literature, to understand how widely research software and open source tools are used across disciplines. + * [The role of software in science: a knowledge graph-based analysis of software mentions in PubMed Central](https://doi.org/10.7717/peerj-cs.835) provides insights into the evolution of software usage and citation patterns across various fields, ranks of journals, and impact of publications. + * [Charting the digital transformation of science: Findings from the 2018 OECD International Survey of Scientific Authors (ISSA2)](https://www.oecd-ilibrary.org/science-and-technology/charting-the-digital-transformation-of-science_1b06c47c-en) includes evidence that 25% of research produces new code. + * [Software and skills for research computing in the UK](https://doi.org/10.5281/zenodo.10473186) reports that 97% of survey participants see software as important as their own research, with 85% citing it as essential. + * [The Ecosystem of Technologies for Social Science Research](https://uk.sagepub.com/en-gb/eur/technologies-for-social-science-research) tracks increase in the use of software tools, along with characteristics of key tools. It is noted that whilst many commercial tools are available, the more innovative ones are coming out of academia. + * [The top 100 papers](https://www.nature.com/articles/514550a) analyses the top 100 _Nature_ papers and finds that the vast majority describe experimental methods or software that have become essential in their fields. + * [UK Research Software Survey](https://doi.org/10.5281/zenodo.14809) considers responses of 1,000 randomly chosen researchers to show that more than 90% of researchers acknowledged software as being important for their own research, and about 70% of researchers said that their research would not be possible without software. + * [Understanding Software in Research: Initial Results from Examining Nature and a Call for Collaboration](https://arxiv.org/abs/1706.06527) reveals that β€œ32 of the 40 papers examined mention software, and the 32 papers contain 211 mentions of distinct software, for an average of 6.5 mentions per paper.” + + Do you have resources to add? + + * Add [new calls](https://forms.gle/r4Jw4swUd1SXigZc9) to the [Research Software Funding Opportunities](/resource/funding-opportunities/) + * Submit a resource as an issue in [GitHub](https://github.com/researchsoft/website/issues/new) (requires GitHub account) + * [Email it directly to ReSA](mailto:info@researchsoft.org) + +
+
+ design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: + +
+
+ + Software is the ubiquitous instrument of science. + +
+
+ subtitle: + text:

Carole Goble, Professor of Computer Science, University of Manchester, UK

+ + design: + background: + color: "#f98c01" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] +--- diff --git a/content/resource/research-software-engineers/_index.md b/content/resource/research-software-engineers/_index.md new file mode 100644 index 00000000..eb15f9fb --- /dev/null +++ b/content/resource/research-software-engineers/_index.md @@ -0,0 +1,73 @@ +--- +title: +date: 2025-07-09 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Research Software Engineers (RSEs) + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + - block: markdown + content: + title: + text: | + +
+
+ + ReSA aims to coordinate discussions across a wide range of research software organisations and programs. Our [stakeholders](/about/stakeholders/) include funders, policy-makers, research software engineer associations, infrastructure providers, university consortia, publishers, and thematic communities. + + ReSA is the secretariat for the [International Council of RSE Associations](https://researchsoftware.org/council.html) – we work with leaders in the research software engineering community through the Council. The following ReSA resources might be of interest to both leaders and individual RSEs: + + - [Resources on how to create a research software engineering (RSE) group (within an organisation) or association (national, etc)](https://doi.org/10.5281/zenodo.14025417): ReSA has collated existing advice, some of which are also collated in resources such as [RSE Groups in the UK; Origins, Organisational Context, and Practices \- β€˜RSE Roadtrip’ Planning Document](https://zenodo.org/records/7852661#.ZFoEdexBwU6) by Kim Martin, [CommuneRS: A Community of Research Software Communities](https://github.com/EllaKaye/communers?tab=readme-ov-file) by Ella Kaye et al., [ADORE.software toolkit](https://adore.software/toolkit/) by ReSA, and [RSE Resources](https://us-rse.org/resources/rses/) by US-RSE. Contributions are welcome either as comments in the [document](https://docs.google.com/document/d/1pQTBTApvwr0G61M1m8h4BypAorWFe6heiiZWwWk7ZY8/edit?tab=t.0) itself, or by emailing [info@researchsoft.org](mailto:info@researchsoft.org). + - Joint ReSA and Research Data Alliance Working Group on [Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/forum/) + - [Research Software Funding Opportunities Database](resource/funding-opportunities/): ReSA has created this public database of current and past research software funding opportunities to improve the findability of this important information. Members of the community can add current funding opportunities via this [short form](https://forms.gle/r4Jw4swUd1SXigZc9). + - [ADORE.software toolkit](https://adore.software/toolkit/): The toolkit aims to support implementation of the [Amsterdam Declaration on Funding Research Software Sustainability](https://adore.software/declaration/). It provides examples of funder programs, policies, and resources for each of the Declaration’s recommendations in the four areas of research software practice, research software ecosystem, research software personnel, and research software ethics. + - ReSA’s monthly [newsletters](/news/) (subscribe [here](https://dashboard.mailerlite.com/forms/778129/110635094443558050/share)). + - [Research institutional policies to support research software](/resource/software-policies/) \- add your organisation’s policy to it [via this form](https://docs.google.com/forms/d/e/1FAIpQLSenXMgY6c5IDpjvSxfXOWfMwvK8CNrWNFwqZNRgqqRYyyqVJg/viewform) or through a comment in the [google sheet](https://docs.google.com/spreadsheets/d/1YgXG1eSrby8e5wzqYOiOZW6KmJtR-wdBTrjr1_aMtF4/edit#gid=0). + - ReSA [task forces](/taskforces/) + - ReSA [Zenodo community](https://zenodo.org/communities/resa/?page=1&size=20) + - ReSA [resources](/resources/resa-resources/#), [guidelines](/resource/guidelines/), [events](/events/events-current/), and [blog](/blog/) + - ReSA [LinkedIn](https://www.linkedin.com/company/research-software-alliance/), [Mastodon](https://fosstodon.org/@researchsoft), and [Slack](https://join.slack.com/t/researchsoft/shared_invite/zt-1flmrglww-SoWjAK_5TJyqLU_~Jx697w) + + ## International RSE associations: + + * [BE-RSE \- Belgium Research Software Engineers](https://be-rse.org/) + * [Danish RSE \- Danish Research Software Engineers Community](https://pure.au.dk/portal/da/projects/danish-rse) + * [DevLOG \- French Research Software Engineers](https://www.devlog.cnrs.fr/) + * [DE-RSE \- Society for Research Software in Germany](http://de-rse.org/) + * [NL-RSE \- the Netherlands Research Software Engineers community](http://nl-rse.org/) + * [Nordic-RSE \- Nordic Research Software Engineers](http://nordic-rse.org/) + * [Rscan \- Research Software Canada](https://github.com/alliancecan/RSCAN) + * [RSE Asia Association](https://rse-asia.github.io/RSE_Asia/) + * [RSE-AUNZ \- RSE Association of Australia and New Zealand](https://rse-aunz.github.io/) + * [RSSE Africa](https://rsse.africa/) + * [Soc-RSE \- UK Society of Research Software Engineering](https://society-rse.org/) + * [US-RSE \- United States Research Software Engineer Association](https://us-rse.org/) + +
+
+ design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- \ No newline at end of file diff --git a/content/resource/software-policies/_index.md b/content/resource/software-policies/_index.md new file mode 100644 index 00000000..7114223b --- /dev/null +++ b/content/resource/software-policies/_index.md @@ -0,0 +1,59 @@ +--- +title: +date: 2025-06-10 +type: landing + +sections: + + - block: markdown + content: + title: + text: | + Research Software Policies + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + + - block: markdown + content: + title: + text: | +
+
+ + + # Research Software Policy Collections + + ## Institutional research software policies ## + + This collection highlights how research organisations govern the creation, maintenance, acquisition, use, distribution, management, and recognition of research software. Policies often address legal, ethical, and IP considerations, and may be part of broader open science or research data strategies. Institutions are encouraged to contribute their policies and engage with the [Policies in Research Organisations for Research Software (PRO4RS) Working Group](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/forum/). + + **[View institutional policies](/institutional-policies/)** + + ## National research software policies ## + + The [Research Software Policy (RSP) Forum](/forums/rsp-forum/), convened by ReSA, curates national, regional, and international policies that support the development, recognition, and sustainability of research software. These resources are intended to guide governments and agencies in shaping or updating their policy frameworks. + + **[View national policies](/national-policies/)** +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- \ No newline at end of file diff --git a/content/rsi-forum/10-header/index.md b/content/rsi-forum/10-header/index.md deleted file mode 100644 index c2900b7f..00000000 --- a/content/rsi-forum/10-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2024-09-23" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Research Software Infrastructure (RSI) Forum" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/rsi-forum/20-content.md b/content/rsi-forum/20-content.md deleted file mode 100644 index 0dab26cd..00000000 --- a/content/rsi-forum/20-content.md +++ /dev/null @@ -1,29 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2024-09-23" -weight = 20 -background = "white" -+++ - -The Research Software Infrastructure (RSI) Forum is a collaboration of infrastructure organisations committed to supporting research software, and those who develop it, as fundamental and vital to research. Infrastructure organisations are organisations that support research software development, maintenance, sharing, connectivity, etc., often through services. - -Software is an [essential constituent](https://doi.org/10.1038/s43588-024-00651-2) of research, and research software is recognised as a crucial part of open science in key international policy documents from [UNESCO](https://en.unesco.org/science-sustainable-future/open-science/recommendation) and the [OECD](https://www.oecd.org/en/publications/oecd-principles-and-guidelines-for-access-to-research-data-from-public-funding_9789264034020-en-fr.html). However, some aspects of infrastructure have failed to keep pace with the scale of use of research software in research. Infrastructure that supports research software can play a key role in improving research impact. Increased focus on alignment can provide societal benefits that include accelerating innovation, reducing information-sharing gaps, encouraging innovation, and promoting reproducibility. - -The RSI Forum provides a formal mechanism for members to share practices and consider how to individually and collectively address common challenges to achieve the significant cultural change needed across the research sector globally. It aims to: - -- Enable collaborations between infrastructure providers that may address topics such as how to address key technical research software community challenges; achieve long-term sustainability for research software; or address social challenges such as community development. -- Increase sharing of practices for research software infrastructures, to encourage reflection and advancement. - -For further information, please refer to the [**Terms of Reference**](https://docs.google.com/document/d/1nsbAi_Uag-r2bL3-8Zy6W_UUj6FXzdNB5-OxQUm8fv8/edit) - -Membership is open to any infrastructure organisation that serves research software and that seeks to help identify and resolve gaps and points of friction in using infrastructures in various research software use cases. This includes: - -- Software forges (e.g., GitHub, GitLab) -- Software registries and repositories (e.g., Zenodo, SciCodes) -- Software journals (e.g., Journal of Open Source Software (JOSS), Journal of Research Software (JORS)) -- Software sustainability organisations (e.g., Software Sustainability Institute) -- Software preservation organisations (e.g., Software Heritage) -- Organisations and initiatives that create standards (e.g., CITATION.cff, FAIR-Impact, CodeMeta). - -Members can invite other organisations that provide infrastructure to research software to join at their own discretion, or potential participants can contact [ReSA](mailto:info@researchsoft.org) for information on joining. diff --git a/content/rsi-forum/index.md b/content/rsi-forum/index.md deleted file mode 100644 index 072adfdf..00000000 --- a/content/rsi-forum/index.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = "Research Software Infrastructure Forum" -date = "2024-09-23" -+++ - diff --git a/content/rsp-forum/10-header/index.md b/content/rsp-forum/10-header/index.md deleted file mode 100644 index 5a306496..00000000 --- a/content/rsp-forum/10-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2025-05-15" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Research Software Policy (RSP) Forum" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/rsp-forum/20-content.md b/content/rsp-forum/20-content.md deleted file mode 100644 index 7b0c3483..00000000 --- a/content/rsp-forum/20-content.md +++ /dev/null @@ -1,32 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2025-05-15" -weight = 20 -background = "white" -+++ - -The Research Software Policy (RSP) Forum is a collaboration of policymakers committed to supporting research software, and those who develop it, as fundamental and vital to research. Policy makers include representatives of organisations focused on research, open science, and open source software, that influence policy at the national, regional, and/or international level. - -Software has become an essential constituent of research and research software is starting to be seen as an equal partner of research data in key international policy documents such as UNESCO and the OECD. However, support and recognition of the importance of research software and the people who develop and maintain it, has failed to keep pace with the scale of use of research software in research. - -The RSP Forum provides a formal mechanism for members to share practices and consider how to individually and collectively address common challenges to achieve the significant cultural change needed across the research sector globally. It aims to address topics such as: - -- Best practices in policy development and implementation to support research software (within broader policies and/or through targeted policies) -- Policy alignment across national boundaries -- Case studies of how national policy makers are affecting (state) legislation for universities in their own country (where relevant) to change employment conditions for research software engineers -- Integration with broader policies for research, open science, open source software, etc. -- Opportunities provided by open source program offices (OSPOs) -- Consistent approaches to monitoring, benchmarking and measuring progress - -For further information, please refer to the [**Terms of Reference**](https://docs.google.com/document/d/1aLviSA4yUPGHvJMhnFZZQzHCxO2GZt7FcHMwiK8pX-c/edit?usp=sharing) - -Membership is open to any policymakers that focus on research, open science, and open source software, and influence policy at the national, regional, and/or international level. - -Examples of/types: -- International and national government policy units (e.g., OECD, Japan Science and Technology Agency (JST)) -- Regional initiatives focused on research software with a policy element (e.g., EVERSE) -- Funding and/or research organisation consortia (e.g., Science Europe, LA Referencia) - -Members can suggest other organisations that support research software policy to join, or potential participants can contact [ReSA](mailto:info@researchsoft.org) for information on joining. - diff --git a/content/rsp-forum/index.md b/content/rsp-forum/index.md deleted file mode 100644 index 0149e1d7..00000000 --- a/content/rsp-forum/index.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "Research Software Policy Forum" -date = "2025-05-15" -+++ - - diff --git a/content/software-policies/20-content.md b/content/software-policies/20-content.md index 6fc12f14..8b19c19c 100644 --- a/content/software-policies/20-content.md +++ b/content/software-policies/20-content.md @@ -17,7 +17,4 @@ This collection highlights how research organisations govern the creation, maint The [Research Software Policy (RSP) Forum](https://www.researchsoft.org/rsp-forum/), convened by ReSA, curates national, regional, and international policies that support the development, recognition, and sustainability of research software. These resources are intended to guide governments and agencies in shaping or updating their policy frameworks. -**[View national policies](https://www.researchsoft.org/national-policies/)** - - - +**[View national policies](https://www.researchsoft.org/national-policies/)** \ No newline at end of file diff --git a/content/software-policies/index.md b/content/software-policies/index.md deleted file mode 100644 index 59c3e9a2..00000000 --- a/content/software-policies/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Research Software Policies" -date = "2023-05-24" -+++ diff --git a/content/stakeholders/10-stakeholders-header/index.md b/content/stakeholders/10-stakeholders-header/index.md deleted file mode 100644 index 3ca702f7..00000000 --- a/content/stakeholders/10-stakeholders-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2025-01-28" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Stakeholders" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/stakeholders/20-content.md b/content/stakeholders/20-content.md deleted file mode 100644 index 427e41ea..00000000 --- a/content/stakeholders/20-content.md +++ /dev/null @@ -1,25 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2025-01-28" -weight = 20 -background = "white" - -+++ - -ReSA engages multiple stakeholder groups across the international research software community to collaborate to achieve common goals. ReSA’s community encompasses many relevant research software organisations, initiatives, and communities that have a national or regional focus, disciplinary focus, or thematic focus (such as software citation or representation of RSEs). - -Our stakeholders include: - -* **Funders (e.g., government, industry):** Leadership of a [research software funders community](https://www.researchsoft.org/funders-forum/) that has engaged 60+ funding organisations in its goal to address common challenges and better coordinate investment globally, including development of the [Amsterdam Declaration on Funding Research Software Sustainability (ADORE.software)](https://adore.software/). -* **Policy makers (e.g., government, publishers, infrastructure providers, research organisations):** Engaging in the drafting of key international policy documents from [UNESCO](https://en.unesco.org/science-sustainable-future/open-science/recommendation) and [OECD](https://www.oecd.org/en/publications/oecd-principles-and-guidelines-for-access-to-research-data-from-public-funding_9789264034020-en-fr.html), which has led to the inclusion and recognition of research software as a crucial part of open science. -* **Research software engineering associations (e.g., regional, national):** Supporting the RSE community as secretariat for the [International Council of RSE Associations](https://researchsoftware.org/council.html); compiling a list of [resources on how to create an RSE group (within an organisation) or association (national, etc)](https://ogyaqy.clicks.mlsend.com/tj/cl/eyJ2Ijoie1wiYVwiOjc3ODEyOSxcImxcIjoxMzkxMzUzODY4NzUwNjk3OTUsXCJyXCI6MTM5MTM1Mzk4MDg0MzQ3MDk3fSIsInMiOiI3ZjUzNTJlYTM3ZTZiZjgyIn0); and contributing to [RSE research](https://www.researchsoft.org/blog/2024-09-23/). -* **Research software infrastructure providers (e.g,. for profit and not for profit):** Co-chairing the [Research Software Infrastructure Forum](https://www.researchsoft.org/rsi-forum/) to consider how to collectively address common challenges. -* **University consortia:** Facilitating [Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/members/all-members/), a joint ReSA and [Research Data Alliance (RDA)](https://www.rd-alliance.org/) working group to help build our collection of [institutional policies](https://www.researchsoft.org/software-policies/) and consider how to better share these with interested stakeholders. -* **Publishers (e.g., for profit and not for profit):** Supporting the ReSA task force on [code availability by publishers](https://www.researchsoft.org/taskforces/) to engage publishers in the coordination needed to gain wide-scale cultural change. -* **Thematic communities:** Co-leading the drafting of the [FAIR for Research Software Principles](https://www.nature.com/articles/s41597-022-01710-x) (FAIR4RS) which engaged 500+ community members; with outcomes documented in a [two-year adoption update](https://doi.org/10.5281/zenodo.10816032); and supporting ReSA [task forces](https://www.researchsoft.org/taskforces/) on [Actionable Guidelines for Making Research Software FAIR](https://drive.google.com/drive/u/0/folders/15srfB15eg9I5jKTSTMF_MlFZfGwX8qx8), and [FAIR4RS Review](https://drive.google.com/drive/u/0/folders/1YZn-oJ85eStIwBqymB6D2sOxrnG0Jm7A) that aims to understand where the principles have and have not been adopted, and why. -* **Research on research software:** Co-authoring a [position paper](https://doi.org/10.5281/zenodo.13350747) on the criticality of research software in AI-driven research. - -
- stakeholders -
diff --git a/content/stakeholders/index.md b/content/stakeholders/index.md deleted file mode 100644 index 2f11747f..00000000 --- a/content/stakeholders/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Stakeholders" -date = "2025-01-28" -+++ diff --git a/content/stars-forum/10-header/index.md b/content/stars-forum/10-header/index.md deleted file mode 100644 index 44f852be..00000000 --- a/content/stars-forum/10-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2025-05-15" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Skills and Training for Research Software (STaRS) Forum" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/stars-forum/20-content.md b/content/stars-forum/20-content.md deleted file mode 100644 index 456a080e..00000000 --- a/content/stars-forum/20-content.md +++ /dev/null @@ -1,31 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2025-05-15" -weight = 20 -background = "white" -+++ - -The Skills and Training for Research Software (STaRS) Forum is a collaboration of skills and training organisations committed to supporting research software, and those who develop it, as fundamental and vital to research. Skills and training organisations/initiatives are those efforts that develop curricula and learning pathways that support research software development, primarily at international, national, and/or disciplinary levels. - -Software has become an essential constituent of research and research software is starting to be seen as an equal partner of research data in key international policy documents such as UNESCO and the OECD. However, support and recognition of the importance of research software and the people who develop and maintain it, has failed to keep pace with the scale of use of research software in research. - -The STaRS Forum provides a formal mechanism for members to share practices and consider how to individually and collectively address common challenges to achieve the significant cultural change needed across the research sector globally. It aims to address topics such as: - -- Mapping of current offerings -- Sharing of best practices in curriculum design -- Sharing material and collaborative curriculum design -- Approaches to demonstrating need and impact -- Integration into broader research/open science/open source software training initiatives - -For further information, please refer to the [**Terms of Reference**](https://docs.google.com/document/d/12d27O1DqvDxAQjtnt9IdpDBlP6hMYO5bAbPd0S0a-w0/edit?usp=sharing) - -Membership is open to any skills and training organisations/initiatives that focus on developing curricula and learning pathways to support the development of research software. - -Examples of/types: - -- International research software training initiatives (e.g., Code Refinery, rOpenSci, PyOpenSci) -- National research software training initiatives (e.g., US-RSE and de-RSE working groups on this) -- Broader international initiatives for a range of digital skills (e.g., The Carpentries, SKILLS4EOSC, CODATA-RDA School of Research Data Science, Turing Way) - -Members can suggest other organisations that support research software skills and training to join, or potential participants can contact [ReSA](mailto:info@researchsoft.org) for information on joining. diff --git a/content/stars-forum/index.md b/content/stars-forum/index.md deleted file mode 100644 index c7dc7bcf..00000000 --- a/content/stars-forum/index.md +++ /dev/null @@ -1,6 +0,0 @@ -+++ -title = "Skills and Training for Research Software Forum" -date = "2025-05-15" -+++ - - diff --git a/content/taskforces/10-taskforces-header/index.md b/content/taskforces/10-taskforces-header/index.md deleted file mode 100644 index e486e56d..00000000 --- a/content/taskforces/10-taskforces-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2020-07-24" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Task forces" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/taskforces/20-content.md b/content/taskforces/20-content.md deleted file mode 100644 index 4b54841b..00000000 --- a/content/taskforces/20-content.md +++ /dev/null @@ -1,80 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2020-07-21" -weight = 20 -background = "white" - -+++ - -ReSA’s mission is to advance the research software ecosystem by collaborating with decision makers and key influencers, to achieve the vision that research software and those who develop and maintain it are recognised and valued as fundamental and vital to research worldwide. - -To deliver on this mission, we invite the ReSA community to join us on ReSA activities stemming from the [ReSA Strategic Plan](https://doi.org/10.5281/zenodo.15444952). You can also support ReSA's work through [Organisational Membership](https://www.researchsoft.org/membership/), [task force support](https://www.researchsoft.org/tf-support/), or a [donation](https://www.researchsoft.org/donate/). - -## Current task forces - -ReSA task forces enable the community to identify and focus on challenges and solutions for a particular area, at the international level. There are also task forces associated with the [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/) focusing on improving coordination of funding, and implementation of the [FAIR4RS Principles](https://www.researchsoft.org/blog/2022-06/). **To suggest or join a ReSA task force, please refer to these [guidelines](https://docs.google.com/document/d/17TCle8vqdpdxgMkzqGQbAHWoKs2Qbei1lNOmPfwYahQ/edit)**. - -### [Actionable FAIR4RS](../tf-actionable-fair4rs/) - -The [FAIR for Research Software](https://doi.org/10.1038/s41597-022-01710-x) (FAIR4RS) Principles provide a framework for making research software Findable, Accessible, Interoperable, Reusable (FAIR). They are, by design, meant to be aspirational and only provide general instructions. Actionable guidelines are lacking such that researchers can follow them to practically make their software FAIR. - -The goal of this task force is to develop actionable, step-by-step guidelines that researchers can easily follow for making their research software FAIR in line with the FAIR4RS Principles (see [task force proposal](https://drive.google.com/drive/u/0/folders/15srfB15eg9I5jKTSTMF_MlFZfGwX8qx8)). While requirements for making research software FAIR may vary depending on many factors such as coding language, research domain, and funding source, the task force aims to define guidelines that are as specific as possible while leaving room for particular requirements of different research software. The group will break down the FAIR4RS Principles to identify practical requirements of each Principle and examine relevant previous work to identify ways to fulfil those requirements and eventually formulate draft guidelines, building on work such as [Making Biomedical Research Software FAIR: Actionable Step-by-step Guidelines](https://doi.org/10.1038/s41597-023-02463-x) with a User-support Too. The draft will then be opened for community review before being published as community guidelines. - -If you are interested in joining this task force and making a major impact on FAIR practices in your field then contact [bPatel@calmi2.org](mailto:bPatel@calmi2.org). - -### FAIR Principles for Research Software (FAIR4RS) Review - -The [FAIR Principles for Research Software](https://doi.org/10.15497/RDA00068) (FAIR4RS) were produced by a joint working group of the [Research Data Alliance](https://www.rd-alliance.org/), [Research Software Alliance](https://www.researchsoft.org/) and [FORCE11](https://force11.org/). They were published in March of 2022 after extensive community consultation and contributions. The [FAIR4RS Principles](https://www.nature.com/articles/s41597-022-01710-x) aim to promote and encourage the findability, accessibility, interoperability, and reusability (FAIR) of research software. The adoption and implementation of the FAIR4RS Principles can increase the transparency, reproducibility, and reusability of research by providing research software that can be executed, replicated, built-upon, combined, reinterpreted, reimplemented, and/or used in different settings and by third-parties. There has been [some significant adoption of the FAIR4RS principles](https://www.researchsoft.org/blog/2024-03/), thus the community has experience trying to apply the principles. It is noted that while many activities are increasing aspects of the FAIRness of research software, more work is still needed to make it easier to embrace the FAIR4RS Principles in their entirety. This ReSA task force, which is also working as part of the RDA [Software Source Code Interest Group](https://www.rd-alliance.org/groups/software-source-code-ig/activity/), aims to understand where the principles have and have not been adopted, and why. - -### [Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/forum/) - -Are you interested in research institution policies that support research software and the people who develop and maintain it? Join the joint [Policies in Research Organisations for Research Software (PRO4RS) Working Group](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/forum/) with the Research Data Alliance to help build our collection of **[institutional policies](https://www.researchsoft.org/software-policies/)** and consider how to better share these with interested stakeholders. This combined working group builds on the ReSA task force to collect institutional policies for further dissemination as examples and encouragement to increase the value of research software assets worldwide. You can add your organisation's policy to the [public list](https://docs.google.com/spreadsheets/d/1YgXG1eSrby8e5wzqYOiOZW6KmJtR-wdBTrjr1_aMtF4/edit#gid=0). - -### [Research Software Authorship and Contribution](../tf-authorship-contribution/) - -Developing research software is a dynamic, agile and collaborative effort, involving a spectrum of contributions that may or may not qualify contributors for authorship of the software. Different types of contributions to software have been suggested across a number of projects, but there is a lack of community support for any one of these taxonomies or vocabularies. Furthermore, we currently lack community guidelines and criteria for software authorship. - -This task force takes forward [previous work](https://sdruskat.net/software-authorship/) to define software authorship and comprehensively describe contribution types/roles in software. The group examines relevant previous work and literature to formulate drafts defining both software authorship and the nature of contributions. These drafts will be made public for expert and community review. Following this consultation phase, they will be published as comprehensive community guidelines. - -### [Succession Planning for Research Software](https://www.researchsoft.org/tf-succession-planning/) - -This task force aims to provide a best practices guide for responsibly wrapping up research code when individuals leave their institutions, addressing a common challenge faced across the international research software community. By gathering community feedback and creating an easy-to-use checklist, the group seeks to support sustainable transitions and long-term preservation of software projects. Outputs will include a GitHub repository or Jupyter Notebook and markdown-based checklists, all shared under a CC-BY 4.0 license. To join the task force or learn more, contact: richard.littauer@gmail.com - -## Completed task forces - -**Code Availability** - -This joint ReSA task force and FORCE11 working group worked towards greater alignment on policy and other related actions for code availability. Code availability is concerned with the code associated with the findings of an article being made available alongside (or prior to) the publication of the article. The group had an initial focus on publisher policies concerning code availability. Then the group aimed to examine ways that tools and guidance might help with policy adoption, with the overarching aim of getting more code shared. Outputs include a [analysis of publisher policies on code sharing](https://doi.org/10.5281/zenodo.10021576), and presentations at the March 2023 Research Data Alliance plenary, in two different sessions. Lauren Cadwallader presented to the [Data Policy Standardisation and Implementation Interest Group](https://www.youtube.com/watch?v=jZX-W0ytFhg&t=3912s) (15 mins) and Tom Honeyman to the [Software Source Code Interest Group](https://youtu.be/ltueULdpgHY?t=2886) (8 mins) Both sessions were considering policy overall, but coming at it from very different angles. This task force builds on the International Data Week session, [Sharing code that supports research articles: is it time to align goals and publisher policies?](https://www.rd-alliance.org/sharing-code-supports-research-articles-it-time-align-goals-and-publisher-policies) ([slides](https://docs.google.com/presentation/d/1wtKgR78PIDbL2tKkyok8UClN4cG7g70NqhccFL4M73o/edit#slide=id.p) and [video](https://www.youtube.com/watch?v=IIkWpke1lnY&t=1385s)). Contact [code-availability+owner@googlegroups.com](mailto:code-availability+owner@googlegroups.com) for any questions. - -**Database of Research Software Funding Opportunities** - -ReSA has created a public database of current and past [research software funding opportunities](https://www.researchsoft.org/funding-opportunities/) to improve the findability of this important information. Members of the community can [add](https://forms.gle/r4Jw4swUd1SXigZc9) current funding opportunities. ReSA will also be adding more details of past funding opportunities to enable analysis of patterns in research software funding, to build on ReSA’s [Overview of the research software funding landscape](https://www.researchsoft.org/blog/2022-02-24/). ReSA continues to support improvements in the funding landscape through the [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/). - -**Software landscape analysis**: This task force updated initial landscaping to include more initiatives from across the globe. Read the 2022 [report](https://doi.org/10.5281/zenodo.7179892) and [blog](https://www.researchsoft.org/blog/2022-10/), and previous results were presented in this [blog](http://doi.org/10.5281/zenodo.3699950) posted by [URSSI](http://urssi.us/blog/2020/03/11/the-research-software-alliance-resa-and-the-community-landscape/), [SSI](http://urssi.us/blog/2020/03/11/the-research-software-alliance-resa-and-the-community-landscape/) and [Netherlands eScience Center](https://blog.esciencecenter.nl/the-research-software-alliance-resa-and-the-community-landscape-9b8a6290ebb3) in 2020. Help us keep the [ReSA list of research software communities](https://docs.google.com/spreadsheets/d/15JHqOxR4HIKHYe821IPvbxIuXP1zMjXKGEIJwB-GPqE/edit#gid=0) up to date by making comments in the spreadsheet. - -**[FAIR 4 Research Software](https://www.rd-alliance.org/groups/fair-4-research-software-fair4rs-wg)** applied the FAIR principles to research software to create the [FAIR4RS Principles](https://www.researchsoft.org/blog/2022-06/), which were introduced in this [article](https://doi.org/10.1038/s41597-022-01710-x) in *Scientific Data* and are now being adopted by a [range of organisations](https://doi.org/10.5281/zenodo.6258366). This task force was convened in partnership with [RDA](https://www.rd-alliance.org/groups/fair-4-research-software-fair4rs-wg) and [FORCE11](https://www.force11.org/group/fair-4-research-software-fair4rs-working-group). - -**[FAIR 4 Research Software Roadmap](https://doi.org/10.5281/zenodo.6239373)** identified key stakeholders in areas arising from the application of the FAIR principles to research software, to guide strategic planning and investment. Consultation with key stakeholders enabled mapping of existing projects that apply some of the elements of the FAIR principles to research software into a longer-term framework to improve strategic alignment and potential collaborators/leads for parts of the Roadmap. Initiatives progressing particular elements of the Roadmap include: - -* [Metrics Working Group](https://docs.google.com/document/d/1BpzecVx4ZvSNfHD-UHhofZVdA6qiP_ENrmozmiq9zY4/edit) to develop FAIR research software metrics. -* [Life Sciences Working Group](https://docs.google.com/document/d/1yQun2tObksymOrAV4RY7jqbSkZ0r8G6I-vrkDAGHnnI/edit) to support the implementation of the FAIR4RS principles in the life sciences community, with ELIXIR providing a pilot use case. -* [FAIR for Virtual Research Environments (VREs) Working Group](https://www.rd-alliance.org/group/fair-virtual-research-environments-wg/case-statement/fair-virtual-research-environments-vres) will enable coordination between existing communities working with VREs, science gateways, platforms and virtual labs, to define what it means for VREs to be and enable FAIR, and provide guidance to VRE developers in achieving this. -* [FAIR4RS skills and training curriculums](https://www.rd-alliance.org/skills-and-training-curriculums-support-fair-research-software) aims to coordinate discussion on the opportunity for the training and research software communities to advance identification of FAIR research software skills and curriculums, building on both existing work on research software training for researchers and the growing body of FAIR data work in this area. - -**Software sections of [RDA COVID-19 Guidelines and Recommendations](https://www.rd-alliance.org/group/rda-covid19-rda-covid19-omics-rda-covid19-epidemiology-rda-covid19-clinical-rda-covid19-1)** for policy makers, funders and the research community. [Final recommendations](https://doi.org/10.15497/rda00052) helping COVID-19 stakeholders follow best practices to maximize the efficiency of their work, and to act as a blueprint for future emergencies. - -**Evidence for the importance of research software**. This task force presented its outcomes in this [blog](https://doi.org/10.5281/zenodo.3884311) posted by [URSSI](http://urssi.us/blog/2020/06/08/evidence-for-the-importance-of-research-software/), [SSI](https://www.software.ac.uk/blog/2020-06-08-evidence-importance-research-software) and [Netherlands eScience Centre](https://blog.esciencecenter.nl/evidence-for-the-importance-of-research-software-1cb4a49077f3) in June 2020. This work identified and analysed resources that demonstrate the importance of research software to research outcomes, to provide information for sharing with key influencers. - - -## Community consultations - -ReSA community consultations facilitate discussions to identify and prioritise challenges across ReSA's three key themes: people, policy and infrastructure. Community consultations are core ReSA activities, enabling the community to collaborate on elucidating how to advance visibility of research software. - -The **[ReSA People Roadmap](https://doi.org/10.5281/zenodo.5633318)** community consultation facilitated identification and prioritisation of the major issues related to people (or personnel) challenges faced by the research software community, including research software engineers. The People Roadmap interviewed 28 research software initiatives to identify strategies and programs across the research software community, and determine common issues and priorities. - -* Roles/careers/recognition, e.g., Research Software Engineers (RSEs), research software product managers, research software community managers -* Skills needed and provision of training (including resources such as best practice guides) -* Community/team development -* Policy such as best practice examples relating to personnel issues -* Infrastructure, physical infrastructure and standards in areas such as software citation that support people-themed issues diff --git a/content/taskforces/30-quote-yanina.md b/content/taskforces/30-quote-yanina.md deleted file mode 100644 index fa603572..00000000 --- a/content/taskforces/30-quote-yanina.md +++ /dev/null @@ -1,15 +0,0 @@ -+++ -fragment = "buttons" -#disabled = false -date = "2023-01-19" -weight = 30 -background = "secondary" - -title = "The work of the people who develop and maintain research software is often hidden and needs to be recognised." -#subtitle = "" - -[[buttons]] - text = "Yanina Bellini, Community Manager, rOpenSci, Argentina" - url = "https://ropensci.org/author/yanina-bellini-saibene/" - color = "link" -+++ diff --git a/content/taskforces/Publisher_Policies.pdf b/content/taskforces/Publisher_Policies.pdf deleted file mode 100644 index 4f30ffc0..00000000 Binary files a/content/taskforces/Publisher_Policies.pdf and /dev/null differ diff --git a/content/taskforces/_index.md b/content/taskforces/_index.md new file mode 100644 index 00000000..283882f5 --- /dev/null +++ b/content/taskforces/_index.md @@ -0,0 +1,134 @@ +--- +title: +date: 2025-05-22 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Task forces + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + + - block: markdown + content: + title: + text: | + +
+
+ + ReSA’s mission is to advance the research software ecosystem by collaborating with decision makers and key influencers, to achieve the vision that research software and those who develop and maintain it are recognised and valued as fundamental and vital to research worldwide. + + To deliver on this mission, we invite the ReSA community to join us on ReSA activities stemming from the [ReSA Strategic Plan](https://doi.org/10.5281/zenodo.15444952). You can also support ReSA's work through [Organisational Membership](/about/membership), [task force support](/taskforces/tf-support), or a [donation](/about/donate). + + ## Current task forces + + ReSA task forces enable the community to identify and focus on challenges and solutions for a particular area, at the international level. There are also task forces associated with the [Research Software Funders Forum](/forums/funders-forum/) focusing on improving coordination of funding, and implementation of the [FAIR4RS Principles](/blog/2022-06/). **To suggest or join a ReSA task force, please refer to these [guidelines](https://docs.google.com/document/d/17TCle8vqdpdxgMkzqGQbAHWoKs2Qbei1lNOmPfwYahQ/edit)**. + + ### [Actionable FAIR4RS](../tf-actionable-fair4rs/) + + The [FAIR for Research Software](https://doi.org/10.1038/s41597-022-01710-x) (FAIR4RS) Principles provide a framework for making research software Findable, Accessible, Interoperable, Reusable (FAIR). They are, by design, meant to be aspirational and only provide general instructions. Actionable guidelines are lacking such that researchers can follow them to practically make their software FAIR. + + The goal of this task force is to develop actionable, step-by-step guidelines that researchers can easily follow for making their research software FAIR in line with the FAIR4RS Principles (see [task force proposal](https://drive.google.com/drive/u/0/folders/15srfB15eg9I5jKTSTMF_MlFZfGwX8qx8)). While requirements for making research software FAIR may vary depending on many factors such as coding language, research domain, and funding source, the task force aims to define guidelines that are as specific as possible while leaving room for particular requirements of different research software. The group will break down the FAIR4RS Principles to identify practical requirements of each Principle and examine relevant previous work to identify ways to fulfil those requirements and eventually formulate draft guidelines, building on work such as [Making Biomedical Research Software FAIR: Actionable Step-by-step Guidelines](https://doi.org/10.1038/s41597-023-02463-x) with a User-support Too. The draft will then be opened for community review before being published as community guidelines. + + If you are interested in joining this task force and making a major impact on FAIR practices in your field then contact [bPatel@calmi2.org](mailto:bPatel@calmi2.org). + + ### FAIR Principles for Research Software (FAIR4RS) Review + + The [FAIR Principles for Research Software](https://doi.org/10.15497/RDA00068) (FAIR4RS) were produced by a joint working group of the [Research Data Alliance](https://www.rd-alliance.org/), [Research Software Alliance](https://www.researchsoft.org/) and [FORCE11](https://force11.org/). They were published in March of 2022 after extensive community consultation and contributions. The [FAIR4RS Principles](https://www.nature.com/articles/s41597-022-01710-x) aim to promote and encourage the findability, accessibility, interoperability, and reusability (FAIR) of research software. The adoption and implementation of the FAIR4RS Principles can increase the transparency, reproducibility, and reusability of research by providing research software that can be executed, replicated, built-upon, combined, reinterpreted, reimplemented, and/or used in different settings and by third-parties. There has been [some significant adoption of the FAIR4RS principles](/blog/2024-03/), thus the community has experience trying to apply the principles. It is noted that while many activities are increasing aspects of the FAIRness of research software, more work is still needed to make it easier to embrace the FAIR4RS Principles in their entirety. This ReSA task force, which is also working as part of the RDA [Software Source Code Interest Group](https://www.rd-alliance.org/groups/software-source-code-ig/activity/), aims to understand where the principles have and have not been adopted, and why. + + ### [Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/forum/) + + Are you interested in research institution policies that support research software and the people who develop and maintain it? Join the joint [Policies in Research Organisations for Research Software (PRO4RS) Working Group](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/forum/) with the Research Data Alliance to help build our collection of **[institutional policies](/resource/software-policies/)** and consider how to better share these with interested stakeholders. This combined working group builds on the ReSA task force to collect institutional policies for further dissemination as examples and encouragement to increase the value of research software assets worldwide. You can add your organisation's policy to the [public list](https://docs.google.com/spreadsheets/d/1YgXG1eSrby8e5wzqYOiOZW6KmJtR-wdBTrjr1_aMtF4/edit#gid=0). + + ### [Research Software Authorship and Contribution](../tf-authorship-contribution/) + + Developing research software is a dynamic, agile and collaborative effort, involving a spectrum of contributions that may or may not qualify contributors for authorship of the software. Different types of contributions to software have been suggested across a number of projects, but there is a lack of community support for any one of these taxonomies or vocabularies. Furthermore, we currently lack community guidelines and criteria for software authorship. + + This task force takes forward [previous work](https://sdruskat.net/software-authorship/) to define software authorship and comprehensively describe contribution types/roles in software. The group examines relevant previous work and literature to formulate drafts defining both software authorship and the nature of contributions. These drafts will be made public for expert and community review. Following this consultation phase, they will be published as comprehensive community guidelines. + + ### [Succession Planning for Research Software](/tf-succession-planning/) + + This task force aims to provide a best practices guide for responsibly wrapping up research code when individuals leave their institutions, addressing a common challenge faced across the international research software community. By gathering community feedback and creating an easy-to-use checklist, the group seeks to support sustainable transitions and long-term preservation of software projects. Outputs will include a GitHub repository or Jupyter Notebook and markdown-based checklists, all shared under a CC-BY 4.0 license. To join the task force or learn more, contact: richard.littauer@gmail.com + + ## Completed task forces + + **Code Availability** + + This joint ReSA task force and FORCE11 working group worked towards greater alignment on policy and other related actions for code availability. Code availability is concerned with the code associated with the findings of an article being made available alongside (or prior to) the publication of the article. The group had an initial focus on publisher policies concerning code availability. Then the group aimed to examine ways that tools and guidance might help with policy adoption, with the overarching aim of getting more code shared. Outputs include a [analysis of publisher policies on code sharing](https://doi.org/10.5281/zenodo.10021576), and presentations at the March 2023 Research Data Alliance plenary, in two different sessions. Lauren Cadwallader presented to the [Data Policy Standardisation and Implementation Interest Group](https://www.youtube.com/watch?v=jZX-W0ytFhg&t=3912s) (15 mins) and Tom Honeyman to the [Software Source Code Interest Group](https://youtu.be/ltueULdpgHY?t=2886) (8 mins) Both sessions were considering policy overall, but coming at it from very different angles. This task force builds on the International Data Week session, [Sharing code that supports research articles: is it time to align goals and publisher policies?](https://www.rd-alliance.org/sharing-code-supports-research-articles-it-time-align-goals-and-publisher-policies) ([slides](https://docs.google.com/presentation/d/1wtKgR78PIDbL2tKkyok8UClN4cG7g70NqhccFL4M73o/edit#slide=id.p) and [video](https://www.youtube.com/watch?v=IIkWpke1lnY&t=1385s)). Contact [code-availability+owner@googlegroups.com](mailto:code-availability+owner@googlegroups.com) for any questions. + + **Database of Research Software Funding Opportunities** + + ReSA has created a public database of current and past [research software funding opportunities](/resource/funding-opportunities/) to improve the findability of this important information. Members of the community can [add](https://forms.gle/r4Jw4swUd1SXigZc9) current funding opportunities. ReSA will also be adding more details of past funding opportunities to enable analysis of patterns in research software funding, to build on ReSA’s [Overview of the research software funding landscape](/blog/2022-02-24/). ReSA continues to support improvements in the funding landscape through the [Research Software Funders Forum](/forums/funders-forum/). + + **Software landscape analysis**: This task force updated initial landscaping to include more initiatives from across the globe. Read the 2022 [report](https://doi.org/10.5281/zenodo.7179892) and [blog](/blog/2022-10/), and previous results were presented in this [blog](http://doi.org/10.5281/zenodo.3699950) posted by [URSSI](http://urssi.us/blog/2020/03/11/the-research-software-alliance-resa-and-the-community-landscape/), [SSI](http://urssi.us/blog/2020/03/11/the-research-software-alliance-resa-and-the-community-landscape/) and [Netherlands eScience Center](https://blog.esciencecenter.nl/the-research-software-alliance-resa-and-the-community-landscape-9b8a6290ebb3) in 2020. Help us keep the [ReSA list of research software communities](https://docs.google.com/spreadsheets/d/15JHqOxR4HIKHYe821IPvbxIuXP1zMjXKGEIJwB-GPqE/edit#gid=0) up to date by making comments in the spreadsheet. + + **[FAIR 4 Research Software](https://www.rd-alliance.org/groups/fair-4-research-software-fair4rs-wg)** applied the FAIR principles to research software to create the [FAIR4RS Principles](/blog/2022-06/), which were introduced in this [article](https://doi.org/10.1038/s41597-022-01710-x) in *Scientific Data* and are now being adopted by a [range of organisations](https://doi.org/10.5281/zenodo.6258366). This task force was convened in partnership with [RDA](https://www.rd-alliance.org/groups/fair-4-research-software-fair4rs-wg) and [FORCE11](https://www.force11.org/group/fair-4-research-software-fair4rs-working-group). + + **[FAIR 4 Research Software Roadmap](https://doi.org/10.5281/zenodo.6239373)** identified key stakeholders in areas arising from the application of the FAIR principles to research software, to guide strategic planning and investment. Consultation with key stakeholders enabled mapping of existing projects that apply some of the elements of the FAIR principles to research software into a longer-term framework to improve strategic alignment and potential collaborators/leads for parts of the Roadmap. Initiatives progressing particular elements of the Roadmap include: + + * [Metrics Working Group](https://docs.google.com/document/d/1BpzecVx4ZvSNfHD-UHhofZVdA6qiP_ENrmozmiq9zY4/edit) to develop FAIR research software metrics. + * [Life Sciences Working Group](https://docs.google.com/document/d/1yQun2tObksymOrAV4RY7jqbSkZ0r8G6I-vrkDAGHnnI/edit) to support the implementation of the FAIR4RS principles in the life sciences community, with ELIXIR providing a pilot use case. + * [FAIR for Virtual Research Environments (VREs) Working Group](https://www.rd-alliance.org/group/fair-virtual-research-environments-wg/case-statement/fair-virtual-research-environments-vres) will enable coordination between existing communities working with VREs, science gateways, platforms and virtual labs, to define what it means for VREs to be and enable FAIR, and provide guidance to VRE developers in achieving this. + * [FAIR4RS skills and training curriculums](https://www.rd-alliance.org/skills-and-training-curriculums-support-fair-research-software) aims to coordinate discussion on the opportunity for the training and research software communities to advance identification of FAIR research software skills and curriculums, building on both existing work on research software training for researchers and the growing body of FAIR data work in this area. + + **Software sections of [RDA COVID-19 Guidelines and Recommendations](https://www.rd-alliance.org/group/rda-covid19-rda-covid19-omics-rda-covid19-epidemiology-rda-covid19-clinical-rda-covid19-1)** for policy makers, funders and the research community. [Final recommendations](https://doi.org/10.15497/rda00052) helping COVID-19 stakeholders follow best practices to maximize the efficiency of their work, and to act as a blueprint for future emergencies. + + **Evidence for the importance of research software**. This task force presented its outcomes in this [blog](https://doi.org/10.5281/zenodo.3884311) posted by [URSSI](http://urssi.us/blog/2020/06/08/evidence-for-the-importance-of-research-software/), [SSI](https://www.software.ac.uk/blog/2020-06-08-evidence-importance-research-software) and [Netherlands eScience Centre](https://blog.esciencecenter.nl/evidence-for-the-importance-of-research-software-1cb4a49077f3) in June 2020. This work identified and analysed resources that demonstrate the importance of research software to research outcomes, to provide information for sharing with key influencers. + + + ## Community consultations + + ReSA community consultations facilitate discussions to identify and prioritise challenges across ReSA's three key themes: people, policy and infrastructure. Community consultations are core ReSA activities, enabling the community to collaborate on elucidating how to advance visibility of research software. + + The **[ReSA People Roadmap](https://doi.org/10.5281/zenodo.5633318)** community consultation facilitated identification and prioritisation of the major issues related to people (or personnel) challenges faced by the research software community, including research software engineers. The People Roadmap interviewed 28 research software initiatives to identify strategies and programs across the research software community, and determine common issues and priorities. + + * Roles/careers/recognition, e.g., Research Software Engineers (RSEs), research software product managers, research software community managers + * Skills needed and provision of training (including resources such as best practice guides) + * Community/team development + * Policy such as best practice examples relating to personnel issues + * Infrastructure, physical infrastructure and standards in areas such as software citation that support people-themed issues + +
+
+ design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + + - block: markdown + content: + title: +
+
+ + The work of the people who develop and maintain research software is often hidden and needs to be recognised. + +
+
+ subtitle: + text:

Yanina Bellini, Community Manager, rOpenSci, Argentina

+ design: + background: + color: "#f98c01" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] +--- diff --git a/content/taskforces/index.md b/content/taskforces/index.md deleted file mode 100644 index 02c576c7..00000000 --- a/content/taskforces/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Task forces" -date = "2020-07-21" -+++ diff --git a/content/taskforces/tf-support/_index.md b/content/taskforces/tf-support/_index.md new file mode 100644 index 00000000..b0cbf0a8 --- /dev/null +++ b/content/taskforces/tf-support/_index.md @@ -0,0 +1,82 @@ +--- +title: +date: 2025-04-23 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Task Force Support + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + + + - block: markdown + content: + title: + text: | + +
+
+ + [ReSA task forces](/taskforces/) are community-led initiatives to create international solutions that can also be used to solve challenges in local environments. These task forces rely on participants contributing their time to collaborate to solve community problems. + + ReSA seeks to identify resources that can support each task force's work where possible. Information on ReSA's current task forces are available on the [task forces](/taskforces/) page, and include: + + - [Actionable Guidelines for FAIR Research Software](/tf-actionable-fair4rs/) + - [Code Availability](/taskforces/) + - [Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/forum/) + - [Research Software Authorship and Contribution](/tf-authorship-contribution/) + + Organisations in the research software community are invited to consider providing financial and/or in-kind contributions to support task forces that are focused on topics that will benefit their community. Two resourcing levels are available: + + **1. Secretariat support for task forces of approx 1 day/month (USD$750/month) to cover:** + + - Meeting scheduling and communications + - Preparation of meeting agendas and minutes + - Follow up when meeting inputs are due + + Examples: + + - The joint ReSA-RDA [Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/forum/) Working Group was successful in gaining in-kind secretariat support from the Netherlands eScience Center through the [Research Data Alliance facilitation of Targeted International working Groups for EOSC-related Research solutions (RDA TIGER)](https://www.rd-alliance.org/get-involved/calling-rda-community/rda-tiger). + - The Digital Research Alliance of Canada has provided in-kind support for two working groups of the [Research Software Funders Forum](/forums/funders-forum/). + + **2. Content expertise support for task forces for approx 1 week/month (USD$7000/month) to cover:** + + - Preparation of task force materials, e.g., background and working documents + - Development of task force outputs, e.g., reports, project proposals + - Authoring of task force public communications, e.g., blogs, newsletter items + + Examples: + + - The [Alfred P. Sloan Foundation](https://www.ogrants.org/proposals/barker_michelle_2021.pdf) and the [Wellcome Trust](https://www.ogrants.org/grants/barker_michelle_2020) provided financial support for the [FAIR for Research Software (FAIR4RS) Working Group](https://www.rd-alliance.org/groups/fair-4-research-software-fair4rs-wg) jointly convened by ReSA, RDA and FORCE11, which developed the [FAIR4RS Principles](https://www.nature.com/articles/s41597-022-01710-x). + + If your organisation is interested in supporting an existing task force, or a new one on a topic that is important to your community, then please contact the ReSA Director, [Michelle Barker](mailto:michelle@researchsoft.org). Organisations can also provide support for ReSA's broader activities through [Organisational Membership](/about/membership/) or [donations](/about/donate/). + + ReSA also provides each task force with support as part of its normal services, including promotion through ReSA communications channel to identify members, engage the community with the content, and share outputs; and status as a ReSA task force. + +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- \ No newline at end of file diff --git a/content/tf-actionable-fair4rs/10-tf-actionable-fair4rs/index.md b/content/tf-actionable-fair4rs/10-tf-actionable-fair4rs/index.md deleted file mode 100644 index cff28881..00000000 --- a/content/tf-actionable-fair4rs/10-tf-actionable-fair4rs/index.md +++ /dev/null @@ -1,15 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2025-04-09" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Actionable FAIR4RS Task Force" - -[header] - image = "main-hero.png" - text = "Main character" -+++ diff --git a/content/tf-actionable-fair4rs/20-content.md b/content/tf-actionable-fair4rs/20-content.md deleted file mode 100644 index 2a191cd0..00000000 --- a/content/tf-actionable-fair4rs/20-content.md +++ /dev/null @@ -1,53 +0,0 @@ -+++ -fragment = "content" -#disabled = true -date = "2025-04-09" -weight = 20 -background = "white" -+++ - -### Overview - -The Actionable Guidelines for FAIR Research Software Task Force is **aiming to establish guidelines that are easy to follow and implement** by researchers for making their research software Findable, Accessible, Interoperable, and Reusable (FAIR) in line with the [FAIR principles for Research software (FAIR4RS Principles)](https://doi.org/10.1038/s41597-022-01710-x). The Task Force was initiated in December 2024 and is aiming to release a first draft of the guidelines by the end of 2025. All the outcomes of the task force will be openly shared under the CC-BY-4.0 license. - -### Background - -Based on the FAIR data principles that have gained worldwide recognition and adoption, the FAIR4RS principles provide a framework for making research software optimally reusable by both humans and machines. They provide an answer to the question β€œWhat are some principles everyone should follow to make their research software conveniently reusable by others?”. The FAIR4RS principles are, by design, meant to be aspirational and only provide general instructions. There have been efforts to establish actionable guidelines based on the FAIR4RS principles, such as the [FAIR Biomedical Research Software (FAIR-BioRS) guidelines](https://doi.org/10.1038/s41597-023-02463-x), but they are domain-specific and lack large community inputs. Actionable guidelines are lacking such that researchers can follow them to practically make their software FAIR. Therefore, the aims of this Task Force are to 1) Develop actionable, easy-to-follow, and easy-to-implement guidelines that are applicable across scientific disciplines and 2) To do so through broad community effort to account for the nuances and needs across disciplines and geographic locations. - -#### Join the Task Force - -Even though the work has started, we are happy to have new members join and contribute to this critical effort. If you are interested, email [bpatel@calmi2.org](mailto:bpatel@calmi2.org). - -### Timeline and Roadmap - -- September 2024: Proposal for the Task Force submitted to ReSA -- December 2024: Kick-off meeting of the task force -- December 2024-March 2025: Completed the interpretation of the FAIR4RS principles. Overview and outcomes are provided in [this document](https://docs.google.com/document/d/1xZsRmllP1_cusDepGZjf80F9soM-fxrFz3HLsd2ER98/edit?usp=sharing). -- March 2025-May 2025: Finding answers through literature review, discussions with experts, etc. to outstanding questions for implementing the FAIR4RS principles. Status: On going. - -### Resources - -- [Meeting agenda and notes](https://docs.google.com/document/d/1NmdhTdvFviYSsYjKVVRbAoJPzd8NYIUp1GmjlqWp52Q/edit?usp=sharing) -- [Summary of Task 1 outcomes](https://docs.google.com/document/d/1xZsRmllP1_cusDepGZjf80F9soM-fxrFz3HLsd2ER98/edit?usp=sharing) - -### Members - -- Bhavesh Patel (chair), FAIR Data Innovations Hub, California Medical Innovations Institute, [https://orcid.org/0000-0002-0307-262X](https://orcid.org/0000-0002-0307-262X) -- Freyja Van Den Boom -- Majid Ounsy -- Daniel Garijo, Universidad PolitΓ©cnica de Madrid -- Neil Chue Hong, Software Sustainability Institute & EPCC / University of Edinburgh -- Daniel NΓΌst, NFDI4Earth / TU Dresden -- Marie Houillon (co-chair), Karlsruhe Institute of Technology -- Marie-Christine Jacquemot -- Alexander Struck, Cluster of Excellence Matters of Activity at Humboldt-Universitaet zu Berlin, [https://orcid.org/0000-0002-1173-9228](https://orcid.org/0000-0002-1173-9228) -- Priyanka Ojha (co-chair), [https://orcid.org/0000-0002-6844-6493](https://orcid.org/0000-0002-6844-6493) -- Sophie Gleiser -- Carlos Ortiz -- Faruk Diblen -- Jonathan Starr -- Kelvin Lee, McMaster University, [https://orcid.org/0009-0000-7340-3204](https://orcid.org/0009-0000-7340-3204) -- Stephan Druskat, German Aerospace Center (DLR), [https://orcid.org/0000-0003-4925-7248](https://orcid.org/0000-0003-4925-7248) -- Ruaridh Gollifer -- Allen Lee, Arizona State University / Open Modeling Foundation / CoMSES.Net -- Rebecca Ringuette, Heliophysics Digital Resource Library / NASA Goddard diff --git a/content/tf-actionable-fair4rs/_index.md b/content/tf-actionable-fair4rs/_index.md new file mode 100644 index 00000000..ef4a78ee --- /dev/null +++ b/content/tf-actionable-fair4rs/_index.md @@ -0,0 +1,90 @@ +--- +title: +date: 2025-05-22 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Actionable FAIR4RS Task Force + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + + - block: markdown + content: + title: + text: | +
+
+ + ### Overview + + The Actionable Guidelines for FAIR Research Software Task Force is **aiming to establish guidelines that are easy to follow and implement** by researchers for making their research software Findable, Accessible, Interoperable, and Reusable (FAIR) in line with the [FAIR principles for Research software (FAIR4RS Principles)](https://doi.org/10.1038/s41597-022-01710-x). The Task Force was initiated in December 2024 and is aiming to release a first draft of the guidelines by the end of 2025. All the outcomes of the task force will be openly shared under the CC-BY-4.0 license. + + ### Background + + Based on the FAIR data principles that have gained worldwide recognition and adoption, the FAIR4RS principles provide a framework for making research software optimally reusable by both humans and machines. They provide an answer to the question β€œWhat are some principles everyone should follow to make their research software conveniently reusable by others?”. The FAIR4RS principles are, by design, meant to be aspirational and only provide general instructions. There have been efforts to establish actionable guidelines based on the FAIR4RS principles, such as the [FAIR Biomedical Research Software (FAIR-BioRS) guidelines](https://doi.org/10.1038/s41597-023-02463-x), but they are domain-specific and lack large community inputs. Actionable guidelines are lacking such that researchers can follow them to practically make their software FAIR. Therefore, the aims of this Task Force are to 1) Develop actionable, easy-to-follow, and easy-to-implement guidelines that are applicable across scientific disciplines and 2) To do so through broad community effort to account for the nuances and needs across disciplines and geographic locations. + + #### Join the Task Force + + Even though the work has started, we are happy to have new members join and contribute to this critical effort. If you are interested, email [bpatel@calmi2.org](mailto:bpatel@calmi2.org). + + ### Timeline and Roadmap + + - September 2024: Proposal for the Task Force submitted to ReSA + - December 2024: Kick-off meeting of the task force + - December 2024-March 2025: Completed the interpretation of the FAIR4RS principles. Overview and outcomes are provided in [this document](https://docs.google.com/document/d/1xZsRmllP1_cusDepGZjf80F9soM-fxrFz3HLsd2ER98/edit?usp=sharing). + - March 2025-May 2025: Finding answers through literature review, discussions with experts, etc. to outstanding questions for implementing the FAIR4RS principles. Status: On going. + + ### Resources + + - [Meeting agenda and notes](https://docs.google.com/document/d/1NmdhTdvFviYSsYjKVVRbAoJPzd8NYIUp1GmjlqWp52Q/edit?usp=sharing) + - [Summary of Task 1 outcomes](https://docs.google.com/document/d/1xZsRmllP1_cusDepGZjf80F9soM-fxrFz3HLsd2ER98/edit?usp=sharing) + + ### Members + + - Bhavesh Patel (chair), FAIR Data Innovations Hub, California Medical Innovations Institute, [https://orcid.org/0000-0002-0307-262X](https://orcid.org/0000-0002-0307-262X) + - Freyja Van Den Boom + - Majid Ounsy + - Daniel Garijo, Universidad PolitΓ©cnica de Madrid + - Neil Chue Hong, Software Sustainability Institute & EPCC / University of Edinburgh + - Daniel NΓΌst, NFDI4Earth / TU Dresden + - Marie Houillon (co-chair), Karlsruhe Institute of Technology + - Marie-Christine Jacquemot + - Alexander Struck, Cluster of Excellence Matters of Activity at Humboldt-Universitaet zu Berlin, [https://orcid.org/0000-0002-1173-9228](https://orcid.org/0000-0002-1173-9228) + - Priyanka Ojha (co-chair), [https://orcid.org/0000-0002-6844-6493](https://orcid.org/0000-0002-6844-6493) + - Sophie Gleiser + - Carlos Ortiz + - Faruk Diblen + - Jonathan Starr + - Kelvin Lee, McMaster University, [https://orcid.org/0009-0000-7340-3204](https://orcid.org/0009-0000-7340-3204) + - Stephan Druskat, German Aerospace Center (DLR), [https://orcid.org/0000-0003-4925-7248](https://orcid.org/0000-0003-4925-7248) + - Ruaridh Gollifer + - Allen Lee, Arizona State University / Open Modeling Foundation / CoMSES.Net + - Rebecca Ringuette, Heliophysics Digital Resource Library / NASA Goddard + +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- diff --git a/content/tf-actionable-fair4rs/index.md b/content/tf-actionable-fair4rs/index.md deleted file mode 100644 index 7bccec05..00000000 --- a/content/tf-actionable-fair4rs/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Actionable FAIR4RS Task Force" -date = "2025-04-09" -+++ diff --git a/content/tf-authorship-contribution/10-tf-authorship-contribution-header/index.md b/content/tf-authorship-contribution/10-tf-authorship-contribution-header/index.md deleted file mode 100644 index af5882c8..00000000 --- a/content/tf-authorship-contribution/10-tf-authorship-contribution-header/index.md +++ /dev/null @@ -1,16 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2023-11-17" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Research Software Authorship and Contribution Task Force" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ diff --git a/content/tf-authorship-contribution/20-content.md b/content/tf-authorship-contribution/20-content.md deleted file mode 100644 index f9ae5e2c..00000000 --- a/content/tf-authorship-contribution/20-content.md +++ /dev/null @@ -1,53 +0,0 @@ -+++ -fragment = "content" -disabled = false -date = "2023-11-17" -weight = 20 -background = "white" - -+++ - -The task force builds on [previous work](https://sdruskat.net/software-authorship/) to define criteria for software authorship and describe contribution types/roles in software. It aims to address - -- a lack of community guidelines and criteria for software authorship; -- a lack of community support for any one existing contribution taxonomy/vocabulary for software. - -### Roadmap - -#### Software Authorship Community Guidelines - - -1. β˜‘ *Examine relevant previous work* -2. β˜‘ *Draft [authorship guidelines v0](https://sdruskat.net/software-authorship/#authorship)* -3. β˜‘ *Draft authorship guidelines v1* -4. β˜‘ *Expert consultation and review of authorship guidelines v1* -5. βž” **Review integration in authorship guidelines v2** -6. ☐ Community survey on authorship guidelines v2 -7. ☐ Survey results integration in authorship guidelines v3 -8. ☐ Publish authorship guidelines v3 - -#### Software Contribution Community Guidelines - -1. β˜‘ *Examine relevant previous work* -2. β˜‘ *Draft [contribution taxonomy v0](https://sdruskat.net/software-authorship/#taxonomy)* -3. ☐ Re-examine relevant previous work based on authorship guidelines -4. ☐ Draft contribution taxonomy v1 -5. ☐ Expert consultation and review of taxonomy v1 -6. ☐ Review integration in taxonomy v2 -7. ☐ Community survey on taxonomy v2 -8. ☐ Survey results integration in taxonomy v3 -9. ☐ Publish contribution taxonomy v3 - -### Task Force Members - -- Carlos Martinez-Ortiz*, Netherlands eScience Center, -- Deborah Leem*, University College London (UCL), -- Gemma Turon Rodrigo*, FundaciΓ³ Ersilia Open Source Initiative, , [gemma@ersilia.io](mailto:gemma@ersilia.io) -- Hugo Gruson*, data.org, -- Neil Chue Hong*, University of Edinburgh / Software Sustainability Institute, -- Saranjeet Kaur Bhogal*, Research Software Alliance, -- Stephan Druskat* (chair), German Aerospace Center (DLR), , [stephan.druskat@dlr.de](mailto:stephan.druskat@dlr.de) - -### Joining the Task Force - -If you are interested in joining the Task Force as an active member, please write an email to a member whose email address is listed above, stating your interest and describing any relevant experience you may have. We will then invite you to a Task Force meeting to meet the other Task Force members. diff --git a/content/tf-authorship-contribution/_index.md b/content/tf-authorship-contribution/_index.md new file mode 100644 index 00000000..94be4753 --- /dev/null +++ b/content/tf-authorship-contribution/_index.md @@ -0,0 +1,88 @@ +--- +title: +date: 2025-05-22 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Research Software Authorship and Contribution Task Force + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + + - block: markdown + content: + title: + text: | +
+
+ + The task force builds on [previous work](https://sdruskat.net/software-authorship/) to define criteria for software authorship and describe contribution types/roles in software. It aims to address + + - a lack of community guidelines and criteria for software authorship; + - a lack of community support for any one existing contribution taxonomy/vocabulary for software. + + ### Roadmap + + #### Software Authorship Community Guidelines + + + 1. β˜‘ *Examine relevant previous work* + 2. β˜‘ *Draft [authorship guidelines v0](https://sdruskat.net/software-authorship/#authorship)* + 3. β˜‘ *Draft authorship guidelines v1* + 4. β˜‘ *Expert consultation and review of authorship guidelines v1* + 5. βž” **Review integration in authorship guidelines v2** + 6. ☐ Community survey on authorship guidelines v2 + 7. ☐ Survey results integration in authorship guidelines v3 + 8. ☐ Publish authorship guidelines v3 + + #### Software Contribution Community Guidelines + + 1. β˜‘ *Examine relevant previous work* + 2. β˜‘ *Draft [contribution taxonomy v0](https://sdruskat.net/software-authorship/#taxonomy)* + 3. ☐ Re-examine relevant previous work based on authorship guidelines + 4. ☐ Draft contribution taxonomy v1 + 5. ☐ Expert consultation and review of taxonomy v1 + 6. ☐ Review integration in taxonomy v2 + 7. ☐ Community survey on taxonomy v2 + 8. ☐ Survey results integration in taxonomy v3 + 9. ☐ Publish contribution taxonomy v3 + + ### Task Force Members + + - Carlos Martinez-Ortiz*, Netherlands eScience Center, + - Deborah Leem*, University College London (UCL), + - Gemma Turon Rodrigo*, FundaciΓ³ Ersilia Open Source Initiative, , [gemma@ersilia.io](mailto:gemma@ersilia.io) + - Hugo Gruson*, data.org, + - Neil Chue Hong*, University of Edinburgh / Software Sustainability Institute, + - Saranjeet Kaur Bhogal*, Research Software Alliance, + - Stephan Druskat* (chair), German Aerospace Center (DLR), , [stephan.druskat@dlr.de](mailto:stephan.druskat@dlr.de) + + ### Joining the Task Force + + If you are interested in joining the Task Force as an active member, please write an email to a member whose email address is listed above, stating your interest and describing any relevant experience you may have. We will then invite you to a Task Force meeting to meet the other Task Force members. +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- diff --git a/content/tf-authorship-contribution/index.md b/content/tf-authorship-contribution/index.md deleted file mode 100644 index 05d989d3..00000000 --- a/content/tf-authorship-contribution/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Research Software Authorship and Contribution Task Force" -date = "2023-11-17" -+++ diff --git a/content/tf-succession-planning/10-tf-succession-planning/index.md b/content/tf-succession-planning/10-tf-succession-planning/index.md deleted file mode 100644 index 3d70543d..00000000 --- a/content/tf-succession-planning/10-tf-succession-planning/index.md +++ /dev/null @@ -1,17 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2025-05-01" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Succession Planning for Research Software Task Force" - -[header] - image = "main-hero.png" - text = "Main character" - -+++ - diff --git a/content/tf-succession-planning/20-content.md b/content/tf-succession-planning/20-content.md deleted file mode 100644 index 1676363f..00000000 --- a/content/tf-succession-planning/20-content.md +++ /dev/null @@ -1,40 +0,0 @@ - -+++ -fragment = "content" -#disabled = true -date = "2025-05-04" -weight = 20 -background = "white" -+++ - -### Overview - - -### [Succession Planning for Research Software](https://www.researchsoft.org/tf-succession-planning/) - -The Succession Planning for Research Software Task Force aims to provide **a best practices guide** for responsibly wrapping up research code when individuals leave their institutions, addressing a common challenge faced across the international research software community. By gathering community feedback and creating an easy-to-use checklist, the group seeks to support sustainable transitions and long-term preservation of software projects. Outputs will include a GitHub repository or Jupyter Notebook and markdown-based checklists, all shared under a CC-BY 4.0 license. - - - -#### Join the Task Force - -To join the task force or learn more, contact [richard.littauer@gmail.com](mailto:richard.littauer@gmail.com). - -### Timeline and Roadmap - -In May 2025: - - Submit preprint paper, **10 Quick Tips For Making Your Code Last Beyond Your Job**. - - Organize an end-of-the-month kick-off meeting. - -### Resources - -- [Paper working directory](https://github.com/RichardLitt/Quick-tips-for-making-your-software-outlive-your-job) - -### Members - -- Richard Littauer: CURIOSS, SustainOSS, GNOME Foundation, Te Herenga Waka Victoria University of Wellington, [Orcid: 0000-0001-5428-7535](https://orcid.org/0000-0001-5428-7535) -- Clare Dillon: CURIOSS, Lero, University of Galway diff --git a/content/tf-succession-planning/_index.md b/content/tf-succession-planning/_index.md new file mode 100644 index 00000000..26c45391 --- /dev/null +++ b/content/tf-succession-planning/_index.md @@ -0,0 +1,75 @@ +--- +title: +date: 2025-05-22 +type: landing + +sections: + - block: markdown + content: + title: + text: | + Succession Planning for Research Software Task Force + {style="color: white; font-size: 2rem; text-align: center; "} + design: + background: + image: + filename: main-hero.png + filters: + brightness: 1 + parallax: false + position: bottom + size: cover + text_color_light: false + spacing: + padding: ["4rem", "2rem"] + + + - block: markdown + content: + title: + text: | +
+
+ + ### Overview + + + ### [Succession Planning for Research Software](/tf-succession-planning/) + + The Succession Planning for Research Software Task Force aims to provide **a best practices guide** for responsibly wrapping up research code when individuals leave their institutions, addressing a common challenge faced across the international research software community. By gathering community feedback and creating an easy-to-use checklist, the group seeks to support sustainable transitions and long-term preservation of software projects. Outputs will include a GitHub repository or Jupyter Notebook and markdown-based checklists, all shared under a CC-BY 4.0 license. + + + + #### Join the Task Force + + To join the task force or learn more, contact [richard.littauer@gmail.com](mailto:richard.littauer@gmail.com). + + ### Timeline and Roadmap + + In May 2025: + - Submit preprint paper, **10 Quick Tips For Making Your Code Last Beyond Your Job**. + - Organize an end-of-the-month kick-off meeting. + + ### Resources + + - [Paper working directory](https://github.com/RichardLitt/Quick-tips-for-making-your-software-outlive-your-job) + + ### Members + + - Richard Littauer: CURIOSS, SustainOSS, GNOME Foundation, Te Herenga Waka Victoria University of Wellington, [Orcid: 0000-0001-5428-7535](https://orcid.org/0000-0001-5428-7535) + - Clare Dillon: CURIOSS, Lero, University of Galway +
+
+ + design: + background: + color: "#ffffff" + text_color_light: false + spacing: + padding: ["3rem", "1rem"] + +--- diff --git a/content/tf-succession-planning/index.md b/content/tf-succession-planning/index.md deleted file mode 100644 index a8aaf753..00000000 --- a/content/tf-succession-planning/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Succession Planning for Research Software" -date = "2025-05-01" -+++ diff --git a/content/tf-support/10-tf-support-header/index.md b/content/tf-support/10-tf-support-header/index.md deleted file mode 100644 index cb20ec74..00000000 --- a/content/tf-support/10-tf-support-header/index.md +++ /dev/null @@ -1,15 +0,0 @@ -+++ -fragment = "hero" -#disabled = true -date = "2024-01-31" -weight = 10 -background = "black" -particles = true - -title_page = false # Default is false -title = "Task Force Support" - -[header] - image = "main-hero.png" - text = "main character" -+++ diff --git a/content/tf-support/20-content.md b/content/tf-support/20-content.md deleted file mode 100644 index e258f521..00000000 --- a/content/tf-support/20-content.md +++ /dev/null @@ -1,44 +0,0 @@ -+++ -fragment = "content" -#disabled = true -date = "2024-01-31" -weight = 20 -background = "white" - -+++ - -[ReSA task forces](https://www.researchsoft.org/taskforces/) are community-led initiatives to create international solutions that can also be used to solve challenges in local environments. These task forces rely on participants contributing their time to collaborate to solve community problems. - -ReSA seeks to identify resources that can support each task force's work where possible. Information on ReSA's current task forces are available on the [task forces](https://www.researchsoft.org/taskforces/) page, and include: - -- [Actionable Guidelines for FAIR Research Software](https://www.researchsoft.org/tf-actionable-fair4rs/) -- [Code Availability](https://www.researchsoft.org/taskforces/) -- [Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/forum/) -- [Research Software Authorship and Contribution](https://www.researchsoft.org/tf-authorship-contribution/) - -Organisations in the research software community are invited to consider providing financial and/or in-kind contributions to support task forces that are focused on topics that will benefit their community. Two resourcing levels are available: - -**1. Secretariat support for task forces of approx 1 day/month (USD$750/month) to cover:** - -- Meeting scheduling and communications -- Preparation of meeting agendas and minutes -- Follow up when meeting inputs are due - -Examples: - -- The joint ReSA-RDA [Policies in Research Organisations for Research Software (PRO4RS)](https://www.rd-alliance.org/groups/rda-resa-policies-research-organisations-research-software-pro4rs/forum/) Working Group was successful in gaining in-kind secretariat support from the Netherlands eScience Center through the [Research Data Alliance facilitation of Targeted International working Groups for EOSC-related Research solutions (RDA TIGER)](https://www.rd-alliance.org/get-involved/calling-rda-community/rda-tiger). -- The Digital Research Alliance of Canada has provided in-kind support for two working groups of the [Research Software Funders Forum](https://www.researchsoft.org/funders-forum/). - -**2. Content expertise support for task forces for approx 1 week/month (USD$7000/month) to cover:** - -- Preparation of task force materials, e.g., background and working documents -- Development of task force outputs, e.g., reports, project proposals -- Authoring of task force public communications, e.g., blogs, newsletter items - -Examples: - -- The [Alfred P. Sloan Foundation](https://www.ogrants.org/proposals/barker_michelle_2021.pdf) and the [Wellcome Trust](https://www.ogrants.org/grants/barker_michelle_2020) provided financial support for the [FAIR for Research Software (FAIR4RS) Working Group](https://www.rd-alliance.org/groups/fair-4-research-software-fair4rs-wg) jointly convened by ReSA, RDA and FORCE11, which developed the [FAIR4RS Principles](https://www.nature.com/articles/s41597-022-01710-x). - -If your organisation is interested in supporting an existing task force, or a new one on a topic that is important to your community, then please contact the ReSA Director, [Michelle Barker](mailto:michelle@researchsoft.org). Organisations can also provide support for ReSA's broader activities through [Organisational Membership](https://www.researchsoft.org/membership/) or [donations](https://www.researchsoft.org/donate/). - -ReSA also provides each task force with support as part of its normal services, including promotion through ReSA communications channel to identify members, engage the community with the content, and share outputs; and status as a ReSA task force. diff --git a/content/tf-support/index.md b/content/tf-support/index.md deleted file mode 100644 index 150310c0..00000000 --- a/content/tf-support/index.md +++ /dev/null @@ -1,4 +0,0 @@ -+++ -title = "Task Force Support" -date = "2024-01-31" -+++ diff --git a/data/themes/resa.toml b/data/themes/resa.toml new file mode 100644 index 00000000..af28f05d --- /dev/null +++ b/data/themes/resa.toml @@ -0,0 +1,18 @@ +# Theme metadata +name = "resa" + +[light] + # Primary + primary = "#196734" + + # Menu + menu_primary = "#fff" + menu_text = "#4A8639" + menu_text_active = "#196734" + menu_title = "#4A8639" + + link = "#196734" + + # Home sections + home_section_odd = "rgb(255, 255, 255)" + home_section_even = "rgb(232,240,231)" \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 00000000..78413c84 --- /dev/null +++ b/go.mod @@ -0,0 +1,9 @@ +module github.com/wowchemy/starter-hugo-research-group + +go 1.15 + +require ( + github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5 v5.9.8-0.20241012174104-661cadc17327 + github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-decap-cms v0.1.2-0.20231108143325-448ed0e3bd2b + github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20240509231741-c3d23d929bc6 +) diff --git a/go.sum b/go.sum new file mode 100644 index 00000000..0aee5cb1 --- /dev/null +++ b/go.sum @@ -0,0 +1,8 @@ +github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5 v5.9.8-0.20241012174104-661cadc17327 h1:aKhll1k3EctTWSvLZYrkhz4ehSqo1+OX5Ho7LvfZR/0= +github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5 v5.9.8-0.20241012174104-661cadc17327/go.mod h1:+Itucnia7M8NWxaEys257x/34K4+POiBlR1yYCTrzBM= +github.com/HugoBlox/hugo-blox-builder/modules/blox-core v0.3.1/go.mod h1:So8+V2U+TNxlXmcpZfdDX0muLh3PdJ7z92h30sv3bZg= +github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-decap-cms v0.1.2-0.20231108143325-448ed0e3bd2b h1:pOYZJXK2hahVeW/FcVuBoFdvtR3DpsDDZVcbGnMNEdQ= +github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-decap-cms v0.1.2-0.20231108143325-448ed0e3bd2b/go.mod h1:Njlsj3S1Z833TdX1nacJZzsiwGGhOq4Nilzo2BH/wQ8= +github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20240509231741-c3d23d929bc6 h1:QIQqCc9DnS/PjhHCnyzxe5yhUMUYtJDMpRoaBtBk3VY= +github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify v1.1.2-0.20240509231741-c3d23d929bc6/go.mod h1:C7jfxMLv1bEUqbM9XDSmEpfOpS8w06OgqNDEcbuRgL4= +github.com/HugoBlox/hugo-blox-builder/modules/blox-seo v0.2.3/go.mod h1:NsESu6cEms1DgH84icCyylElg2Zu8A0f7Fma5JR0LZE= diff --git a/layouts/index.atom.xml b/layouts/index.atom.xml deleted file mode 100644 index 576493d5..00000000 --- a/layouts/index.atom.xml +++ /dev/null @@ -1,51 +0,0 @@ -{{- $pages := where .Site.RegularPages "Type" "in" .Site.Params.mainSections -}} -{{- with .Site.Config.Services.RSS.Limit -}} - {{- if ge . 1 -}} - {{- $pages = $pages | first . -}} - {{- end -}} -{{- end -}} -{{ print "" | safeHTML }} - - Hugo {{ .Site.Hugo.Version }} - {{ if .Site.Params.feedUUID }}urn:uuid:{{.Site.Params.feedUUID }}{{ else }}{{ .Permalink }}{{ end }} - {{ with .OutputFormats.Get "atom" }} - {{ printf ` -` .MediaType.Type .Permalink $.Site.LanguageCode | safeHTML }} - {{ end }} - {{ range .AlternativeOutputFormats }} - {{ printf ` -` .MediaType.Type .Permalink $.Site.LanguageCode | safeHTML }} - {{ end }} - {{ with .Site.Params.icon }}{{ . | absURL }}{{ end }} - {{ with .Site.Params.logo }}{{ . | absURL }}{{ end }} - {{ with .Site.Copyright }}{{ replace . "{year}" now.Year }}{{ end }} - {{ with .Site.Params.Description }}{{ . }}{{ end }} -{{ .Site.Title }} -{{ now.Format .Site.Params.dateFormatAtomFeed | safeHTML }} - {{ with .Site.Params.icon96 }}{{ . | absURL }}{{ end }} - {{ range $pages }} - - {{ if .Params.author }} - {{ range .Params.author }} - - {{ . }} - - {{ end }} - {{ else if .Site.Author }} - - {{ .Site.Author.name }} - - {{ end }} -tag:{{ $u := urls.Parse .Permalink }}{{ $u.Hostname }},{{ .Date.Format .Site.Params.dateFormatTag }}:{{ replace $u.Path "#" "_" }} - -{{ .Title }} -{{ .Date.Format .Site.Params.dateFormatAtomFeed | safeHTML }} -{{ .Lastmod.Format .Site.Params.dateFormatAtomFeed | safeHTML }} - {{ with .Description }}{{ . }}{{ end }} - - {{ printf " " .Content | safeHTML }} - - - {{ end }} - diff --git a/netlify.toml b/netlify.toml index 9763064c..e9a206f3 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,20 +1,21 @@ [build] + command = "hugo --gc --minify -b $URL" publish = "public" - command = "hugo" + +[build.environment] + HUGO_VERSION = "0.135.0" + HUGO_ENABLEGITINFO = "true" [context.production.environment] - HUGO_VERSION = "0.76.5" HUGO_ENV = "production" - HUGO_ENABLEGITINFO = "true" - -[context.branch-deploy.environment] - HUGO_VERSION = "0.76.5" -[context.deploy-preview.environment] - HUGO_VERSION = "0.76.5" - [context.deploy-preview] - command = "hugo -b $DEPLOY_PRIME_URL --buildFuture" + command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL" [context.branch-deploy] - command = "hugo -b $DEPLOY_PRIME_URL --buildFuture" + command = "hugo --gc --minify -b $DEPLOY_PRIME_URL" + +[[plugins]] + package = "netlify-plugin-hugo-cache-resources" + [plugins.inputs] + debug = true diff --git a/newsletter-template/index.md b/newsletter-template/index.md deleted file mode 100644 index 62d6550b..00000000 --- a/newsletter-template/index.md +++ /dev/null @@ -1,42 +0,0 @@ -+++ -fragment = "content" -weight = 100 - -title = "ReSA News: Month Year" -title_align = "left" - -display_date = false -date = "YYYY-MM-DD" - -summary = """ -Sometimes you need a **markdown** summary and that's not possible to do with -[Hugo](https://gohugo.io). Lorem ipsum dolor sit amet, consectetur adipiscing -elit. Curabitur a lorem urna. -""" - -+++ - -### Welcome to this template - -The [ReSA Taskforce](http://www.researchsoft.org/resa-taskforces-join-us/) on evidence for the -importance of research software presented its outcomes in a [blog](https://zenodo.org/record/3884311#.Xt7-NvJS-lM) -posted by [URSSI](http://urssi.us/blog/2020/06/08/evidence-for-the-importance-of-research-software/), -[SSI](https://www.software.ac.uk/blog/2020-06-08-evidence-importance-research-software) and -[Netherlands eScience Centre](https://blog.esciencecenter.nl/evidence-for-the-importance-of-research-software-1cb4a49077f3) -in early June. This work identified and analysed resources that demonstrate the importance of -research software to research outcomes, to provide information for sharing with key influencers. -This analysis considers papers relating to meta-research, policy, community, education and training, research breakthroughs and specific software. - -### ReSA taskforce update 1 - -You can add an update from a ReSA taskforce here. - -### ReSA taskforce update 2 - -You can add an update from a ReSA taskforce here. - -### Community news - -*If you’d like to suggest items for inclusion in ReSA News then please [contact us](/contact). If you would to engage with the ReSA community, then join the [ReSA Google group](https://groups.google.com/forum/#!forum/research-software-alliance) to receive email updates. To subscribe send a blank email to [research-software-alliance+subscribe@googlegroups.com](mailto:research-software-alliance+subscribe@googlegroups.com)* - -*ReSA’s vision is that research software be recognised and valued as a fundamental and vital component of research worldwide. The ReSA mission is to bring research software communities together to collaborate on the advancement of research software.* diff --git a/newsletter-template/readme.md b/newsletter-template/readme.md deleted file mode 100644 index c34495fe..00000000 --- a/newsletter-template/readme.md +++ /dev/null @@ -1,18 +0,0 @@ -## Creating a newsletter - -To create a new newsletter: -1. Open *two* browser windows. Set Browser One to [content/news](https://github.com/researchsoft/website/tree/master/content/news) and Browser Two to [newsletter ToC template](https://raw.githubusercontent.com/researchsoft/website/master/newsletter-template/toc.md). -1. In Browser One, click **Add file** -> **Create new file**. -1. In Browser One, in **Name your file...** type ```/YYYY-MM/toc.md```, where YYYY-MM is the year and month of the new newsletter (for example 2020-08). -1. Copy and paste the text from Browser Two into the editing field in Browser One - _you do not need to edit the content at all_. -1. In Browser One, add a suitable Commit message, such as "Created newsletter for August 2020" -1. In Browser One, if you have permission, make sure **Commit directly to the ```master``` branch** is selected and click **Commit new file**. -1. In Browser Two, navigate to the [newsletter template](https://raw.githubusercontent.com/researchsoft/website/master/newsletter-template/index.md). -1. In Browser One, click **Add file** -> **Create new file**. -1. In Browser One, in **Name your file...** type ```index.md```. -1. Copy and paste the text from Browser Two into the editing field in Browser One. -1. In Browser One, update the ```title```, ```date```, and ```summary``` fields. -1. In Browser One, update the body of the newsletter with your content, referring to [Mastering Markdown](https://guides.github.com/features/mastering-markdown/) on [GitHub Guides](https://guides.github.com/). -1. In Browser One, add a suitable Commit message, such as "Added content for newsletter for August 2020". -1. In Browser One, if you have permission, make sure **Commit directly to the ```master``` branch** is selected and click **Commit new file**. -1. Monitor the [Netlify status button](https://github.com/researchsoft/website). When it says "netlify Success", visit the ReSA website to see the new newsletter. diff --git a/newsletter-template/toc.md b/newsletter-template/toc.md deleted file mode 100644 index 376395f2..00000000 --- a/newsletter-template/toc.md +++ /dev/null @@ -1,7 +0,0 @@ -+++ - -fragment = "toc" -weight = 10 -content = "index.md" - -+++ diff --git a/readme.md b/readme.md index 0304da0e..44b4fa25 100644 --- a/readme.md +++ b/readme.md @@ -2,15 +2,80 @@ [![Netlify Status](https://api.netlify.com/api/v1/badges/b366fc0d-c20f-4312-a573-b3de6fa243fc/deploy-status)](https://app.netlify.com/sites/researchsoft/deploys) -This repository contains the source files that generates the Research Software Alliance website. The repository is monitored by [Netlify](https://www.netlify.com/), which generates and hosts the live website. +This repository contains the source files that generates the Research Software +Alliance website. The repository is monitored by +[Netlify](https://www.netlify.com/), which generates and hosts the live +website. -The website uses the [Hugo framework](https://gohugo.io/) with the [Syna theme](https://about.okkur.org/syna/docs/). All content files are written in Markdown and are processed into HTML by [Netlify](https://app.netlify.com/sites/researchsoft/deploys). +The website uses the [Hugo framework](https://gohugo.io/) with the +[Syna theme](https://about.okkur.org/syna/docs/). All content files are written +in Markdown and are processed into HTML by [Netlify](https://app.netlify.com/sites/researchsoft/deploys). ## Editing content -The only files that should be edited as a matter of course are in [content](https://github.com/researchsoft/website/tree/master/content). Images generally go into [static/images](https://github.com/researchsoft/website/tree/master/static/images). +### Using VS Code (or any suitable Integrated Development Environment (IDE)) -When editing existing content, it is possible to use the GitHub text editor interface to make changes. When viewing the file you would like to edit, click the Edit button to make your changes. If you do not have permissions for the repository directly, you will need to submit a pull request for an administrator to adopt the changes. +- You can clone a local copy of this repository using: -Extra information -Due to limitations in the version of Hugo that Netlify runs, changing the _style_ of the website will require pulling this entire repo to a computer and building the site with hugo-extended. The resulting files generated in [resources/_gen/assets/scss/styles](https://github.com/researchsoft/website/tree/master/resources/_gen/assets/scss/styles]) then need to be committed back to the repository. +```zsh +git clone https://github.com/researchsoft/website.git +``` + +- Change to the 'website' directory: + +```zsh +cd website +``` + +- Create a branch OR switch to an existing branch that you want to work on: + +```zsh +git checkout -b new_branch_name # if you want to create a new branch +git checkout existing_branch_name # if you want to switch to an existing branch +``` + +- Make the necessary changes and stage them using: + +```zsh +git add --all # if you want to stage all the modified files +git add path_to_file # if you want to stage any specific modified file. +# To find the path to files that are modified use `git status` +``` + +- Commit the staged changes using: + +```zsh +git commit -m ":tada: an informative commit message" +``` + +- Finally push your committed changes: + +```zsh +git push --set-upstream origin new_branch_name # if pushing for the first time +# to a new branch +git push # if pushing to an existing branch +``` + +- Create a Pull Request (PR) on GitHub repo and direct it to the `dev` branch +from your branch. Tag any relevant issue(s), add relevant label(s), and +request reviews where required. + +### Using GitHub text editor interface + +The only files that should be edited as a matter of course are in +[content](https://github.com/researchsoft/website/tree/master/content). +Images generally go into [static/images](https://github.com/researchsoft/website/tree/master/static/images). + +When editing existing content, it is possible to use the GitHub text editor +interface to make changes. When viewing the file you would like to edit, click +the Edit button to make your changes. If you do not have permissions for +the repository directly, you will need to submit a pull request for an +administrator to adopt the changes. + +## Extra information + +Due to limitations in the version of Hugo that Netlify runs, +changing the _style_ of the website will require pulling this entire +repo to a computer and building the site with hugo-extended. The resulting +files generated in +[resources/_gen/assets/scss/styles](https://github.com/researchsoft/website/tree/master/resources/_gen/assets/scss/styles>) then need to be committed back to the repository. diff --git a/resources/_gen/assets/scss/styles/index.scss_02bf14281ac065540fcc7ecc15ca70a4.content b/resources/_gen/assets/scss/styles/index.scss_02bf14281ac065540fcc7ecc15ca70a4.content deleted file mode 100644 index 1101f869..00000000 --- a/resources/_gen/assets/scss/styles/index.scss_02bf14281ac065540fcc7ecc15ca70a4.content +++ /dev/null @@ -1,8 +0,0 @@ -/*!* Font Awesome Free 5.6.3 by @fontawesome - https://fontawesome.com -* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)*/.fa,.fas,.far,.fal,.fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fas.fa-pull-left,.far.fa-pull-left,.fal.fa-pull-left,.fab.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fas.fa-pull-right,.far.fa-pull-right,.fal.fa-pull-right,.fab.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform:scale(1,-1)}.fa-flip-horizontal.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform:scale(-1,-1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hanukiah:before{content:"\f6e6"}.fa-hashtag:before{content:"\f292"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-icicles:before{content:"\f7ad"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}/*!* Font Awesome Free 5.6.3 by @fontawesome - https://fontawesome.com -* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)*/@font-face{font-family:'font awesome 5 free';font-style:normal;font-weight:400;src:url(fonts/fa-regular-400.eot);src:url(fonts/fa-regular-400.eot?#iefix)format("embedded-opentype"),url(fonts/fa-regular-400.woff2)format("woff2"),url(fonts/fa-regular-400.woff)format("woff"),url(fonts/fa-regular-400.ttf)format("truetype"),url(fonts/fa-regular-400.svg#fontawesome)format("svg")}.far{font-family:'font awesome 5 free';font-weight:400}/*!* Font Awesome Free 5.6.3 by @fontawesome - https://fontawesome.com -* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)*/@font-face{font-family:'font awesome 5 free';font-style:normal;font-weight:900;src:url(fonts/fa-solid-900.eot);src:url(fonts/fa-solid-900.eot?#iefix)format("embedded-opentype"),url(fonts/fa-solid-900.woff2)format("woff2"),url(fonts/fa-solid-900.woff)format("woff"),url(fonts/fa-solid-900.ttf)format("truetype"),url(fonts/fa-solid-900.svg#fontawesome)format("svg")}.fa,.fas{font-family:'font awesome 5 free';font-weight:900}/*!* Font Awesome Free 5.6.3 by @fontawesome - https://fontawesome.com -* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)*/@font-face{font-family:'font awesome 5 brands';font-style:normal;font-weight:400;src:url(fonts/fa-brands-400.eot);src:url(fonts/fa-brands-400.eot?#iefix)format("embedded-opentype"),url(fonts/fa-brands-400.woff2)format("woff2"),url(fonts/fa-brands-400.woff)format("woff"),url(fonts/fa-brands-400.ttf)format("truetype"),url(fonts/fa-brands-400.svg#fontawesome)format("svg")}.fab{font-family:'font awesome 5 brands'}/*!* Bootstrap v4.4.1 (https://getbootstrap.com/) -* Copyright 2011-2019 The Bootstrap Authors -* Copyright 2011-2019 Twitter, Inc. -* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)*/:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #343a40;--primary: #006400;--secondary: #ff8c00;--success: #008f54;--info: #00c9dc;--warning: #fdf314;--danger: #dc1200;--light: #f8f9fa;--dark: #343a40;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a,.search-results-container .result h5:not(:hover):not(:active),.search-results-full-container .result h5:not(:hover):not(:active){color:#006400;text-decoration:none;background-color:transparent}a:hover,.search-results-container .result h5:hover:not(:hover):not(:active),.search-results-full-container .result h5:hover:not(:hover):not(:active){color:#001800;text-decoration:underline}a:not([href]),.search-results-container .result h5:not([href]):not(:hover):not(:active),.search-results-full-container .result h5:not([href]):not(:hover):not(:active){color:inherit;text-decoration:none}a:not([href]):hover,.search-results-container .result h5:not([href]):hover:not(:hover):not(:active),.search-results-full-container .result h5:not([href]):hover:not(:hover):not(:active){color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,liberation mono,courier new,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{padding:0;border-style:none}input[type=radio],input[type=checkbox]{box-sizing:border-box;padding:0}input[type=date],input[type=time],input[type=datetime-local],input[type=month]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:2.5rem}h2,.h2{font-size:2rem}h3,.h3{font-size:1.75rem}h4,.h4{font-size:1.5rem}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:5px}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code,.search-results-container .result h5:not(:hover):not(:active)>code,.search-results-full-container .result h5:not(:hover):not(:active)>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:576px){.container{max-width:540px}}@media(min-width:768px){.container{max-width:720px}}@media(min-width:992px){.container{max-width:960px}}@media(min-width:1200px){.container{max-width:1140px}}.container-fluid,.container-xl,.container-lg,.container-md,.container-sm{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:576px){.container-sm,.container{max-width:540px}}@media(min-width:768px){.container-md,.container-sm,.container{max-width:720px}}@media(min-width:992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width:1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col-xl,.col-xl-auto,.col-xl-12,.col-xl-11,.col-xl-10,.col-xl-9,.col-xl-8,.col-xl-7,.col-xl-6,.col-xl-5,.col-xl-4,.col-xl-3,.col-xl-2,.col-xl-1,.col-lg,.col-lg-auto,.col-lg-12,.col-lg-11,.col-lg-10,.col-lg-9,.col-lg-8,.col-lg-7,.col-lg-6,.col-lg-5,.col-lg-4,.col-lg-3,.col-lg-2,.col-lg-1,.col-md,.col-md-auto,.col-md-12,.col-md-11,.col-md-10,.col-md-9,.col-md-8,.col-md-7,.col-md-6,.col-md-5,.col-md-4,.col-md-3,.col-md-2,.col-md-1,.col-sm,.col-sm-auto,.col-sm-12,.col-sm-11,.col-sm-10,.col-sm-9,.col-sm-8,.col-sm-7,.col-sm-6,.col-sm-5,.col-sm-4,.col-sm-3,.col-sm-2,.col-sm-1,.col,.col-auto,.col-12,.col-11,.col-10,.col-9,.col-8,.col-7,.col-6,.col-5,.col-4,.col-3,.col-2,.col-1{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.33333333%;max-width:33.33333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.66666667%;max-width:16.66666667%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}@media(min-width:576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.33333333%;max-width:33.33333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.66666667%;max-width:16.66666667%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}}@media(min-width:768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.33333333%;max-width:33.33333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.66666667%;max-width:16.66666667%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}}@media(min-width:992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.33333333%;max-width:33.33333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.66666667%;max-width:16.66666667%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}}@media(min-width:1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.33333333%;max-width:33.33333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.66666667%;max-width:16.66666667%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table th,.table td{padding:.75rem;vertical-align:top;border-top:1px solid #e9ecef}.table thead th{vertical-align:bottom;border-bottom:2px solid #e9ecef}.table tbody+tbody{border-top:2px solid #e9ecef}.table-sm th,.table-sm td{padding:.3rem}.table-bordered{border:1px solid #e9ecef}.table-bordered th,.table-bordered td{border:1px solid #e9ecef}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#b8d4b8}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#7aae7a}.table-hover .table-primary:hover{background-color:#a8caa8}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#a8caa8}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#ffdfb8}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#ffc37a}.table-hover .table-secondary:hover{background-color:#ffd49f}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#ffd49f}.table-success,.table-success>th,.table-success>td{background-color:#b8e0cf}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#7ac5a6}.table-hover .table-success:hover{background-color:#a6d8c3}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#a6d8c3}.table-info,.table-info>th,.table-info>td{background-color:#b8f0f5}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#7ae3ed}.table-hover .table-info:hover{background-color:#a2ebf2}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#a2ebf2}.table-warning,.table-warning>th,.table-warning>td{background-color:#fefcbd}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#fef985}.table-hover .table-warning:hover{background-color:#fefba4}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#fefba4}.table-danger,.table-danger>th,.table-danger>td{background-color:#f5bdb8}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#ed847a}.table-hover .table-danger:hover{background-color:#f2a8a2}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f2a8a2}.table-light,.table-light>th,.table-light>td{background-color:#fdfdfe}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>th,.table-dark>td{background-color:#c6c8ca}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#e9ecef}.table-dark{color:#fff;background-color:#343a40}.table-dark th,.table-dark td,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media(max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media(max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media(max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media(max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#00e400;outline:0;box-shadow:0 0 0 .2rem rgba(0,100,0,.25)}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input[disabled]~.form-check-label,.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#008f54}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(0,143,84,.9);border-radius:.25rem}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#008f54;padding-right:calc(1.5em + .75rem);background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA4IDgiPjxwYXRoIGZpbGw9IiMwMDhmNTQiIGQ9Ik0yLjMgNi43My42IDQuNTNjLS40LTEuMDQuNDYtMS40IDEuMS0uOGwxLjEgMS40IDMuNC0zLjhjLjYtLjYzIDEuNi0uMjcgMS4yLjdsLTQgNC42Yy0uNDMuNS0uOC40LTEuMS4xeiIvPjwvc3ZnPg==);background-repeat:no-repeat;background-position:right calc(.375em + .1875rem)center;background-size:calc(.75em + .375rem)calc(.75em + .375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#008f54;box-shadow:0 0 0 .2rem rgba(0,143,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem)right calc(.375em + .1875rem)}.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#008f54;padding-right:calc(.75em + 2.3125rem);background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjUiIHZpZXdCb3g9IjAgMCA0IDUiPjxwYXRoIGZpbGw9IiMzNDNhNDAiIGQ9Ik0yIDAgMCAyaDR6bTAgNUwwIDNoNHoiLz48L3N2Zz4=)no-repeat right .75rem center/8px 10px,url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA4IDgiPjxwYXRoIGZpbGw9IiMwMDhmNTQiIGQ9Ik0yLjMgNi43My42IDQuNTNjLS40LTEuMDQuNDYtMS40IDEuMS0uOGwxLjEgMS40IDMuNC0zLjhjLjYtLjYzIDEuNi0uMjcgMS4yLjdsLTQgNC42Yy0uNDMuNS0uOC40LTEuMS4xeiIvPjwvc3ZnPg==)#fff no-repeat center right 1.75rem/calc(.75em + .375rem)calc(.75em + .375rem)}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#008f54;box-shadow:0 0 0 .2rem rgba(0,143,84,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#008f54}.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip,.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip{display:block}.was-validated .custom-control-input:valid~.custom-control-label,.custom-control-input.is-valid~.custom-control-label{color:#008f54}.was-validated .custom-control-input:valid~.custom-control-label::before,.custom-control-input.is-valid~.custom-control-label::before{border-color:#008f54}.was-validated .custom-control-input:valid:checked~.custom-control-label::before,.custom-control-input.is-valid:checked~.custom-control-label::before{border-color:#00c272;background-color:#00c272}.was-validated .custom-control-input:valid:focus~.custom-control-label::before,.custom-control-input.is-valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,143,84,.25)}.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before{border-color:#008f54}.was-validated .custom-file-input:valid~.custom-file-label,.custom-file-input.is-valid~.custom-file-label{border-color:#008f54}.was-validated .custom-file-input:valid:focus~.custom-file-label,.custom-file-input.is-valid:focus~.custom-file-label{border-color:#008f54;box-shadow:0 0 0 .2rem rgba(0,143,84,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc1200}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,18,0,.9);border-radius:.25rem}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc1200;padding-right:calc(1.5em + .75rem);background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGMxMjAwIiB2aWV3Qm94PSIwIDAgMTIgMTIiPjxjaXJjbGUgY3g9IjYiIGN5PSI2IiByPSI0LjUiLz48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBkPSJNNS44IDMuNmguNEw2IDYuNXoiLz48Y2lyY2xlIGN4PSI2IiBjeT0iOC4yIiByPSIuNiIgZmlsbD0iI2RjMTIwMCIgc3Ryb2tlPSJub25lIi8+PC9zdmc+);background-repeat:no-repeat;background-position:right calc(.375em + .1875rem)center;background-size:calc(.75em + .375rem)calc(.75em + .375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc1200;box-shadow:0 0 0 .2rem rgba(220,18,0,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem)right calc(.375em + .1875rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#dc1200;padding-right:calc(.75em + 2.3125rem);background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjUiIHZpZXdCb3g9IjAgMCA0IDUiPjxwYXRoIGZpbGw9IiMzNDNhNDAiIGQ9Ik0yIDAgMCAyaDR6bTAgNUwwIDNoNHoiLz48L3N2Zz4=)no-repeat right .75rem center/8px 10px,url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGMxMjAwIiB2aWV3Qm94PSIwIDAgMTIgMTIiPjxjaXJjbGUgY3g9IjYiIGN5PSI2IiByPSI0LjUiLz48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBkPSJNNS44IDMuNmguNEw2IDYuNXoiLz48Y2lyY2xlIGN4PSI2IiBjeT0iOC4yIiByPSIuNiIgZmlsbD0iI2RjMTIwMCIgc3Ryb2tlPSJub25lIi8+PC9zdmc+)#fff no-repeat center right 1.75rem/calc(.75em + .375rem)calc(.75em + .375rem)}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#dc1200;box-shadow:0 0 0 .2rem rgba(220,18,0,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#dc1200}.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip,.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip{display:block}.was-validated .custom-control-input:invalid~.custom-control-label,.custom-control-input.is-invalid~.custom-control-label{color:#dc1200}.was-validated .custom-control-input:invalid~.custom-control-label::before,.custom-control-input.is-invalid~.custom-control-label::before{border-color:#dc1200}.was-validated .custom-control-input:invalid:checked~.custom-control-label::before,.custom-control-input.is-invalid:checked~.custom-control-label::before{border-color:#ff2410;background-color:#ff2410}.was-validated .custom-control-input:invalid:focus~.custom-control-label::before,.custom-control-input.is-invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,18,0,.25)}.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc1200}.was-validated .custom-file-input:invalid~.custom-file-label,.custom-file-input.is-invalid~.custom-file-label{border-color:#dc1200}.was-validated .custom-file-input:invalid:focus~.custom-file-label,.custom-file-input.is-invalid:focus~.custom-file-label{border-color:#dc1200;box-shadow:0 0 0 .2rem rgba(220,18,0,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media(min-width:576px){.form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;cursor:pointer;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn:focus,.btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,100,0,.25)}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,.search-results-container .result h5.btn.disabled:not(:hover):not(:active),.search-results-full-container .result h5.btn.disabled:not(:hover):not(:active),fieldset:disabled a.btn,fieldset:disabled .search-results-container .result h5.btn:not(:hover):not(:active),.search-results-container .result fieldset:disabled h5.btn:not(:hover):not(:active),fieldset:disabled .search-results-full-container .result h5.btn:not(:hover):not(:active),.search-results-full-container .result fieldset:disabled h5.btn:not(:hover):not(:active){pointer-events:none}.btn-primary{color:#fff;background-color:#006400;border-color:#006400}.btn-primary:hover{color:#fff;background-color:#003e00;border-color:#003100}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#003e00;border-color:#003100;box-shadow:0 0 0 .2rem rgba(38,123,38,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#006400;border-color:#006400}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#003100;border-color:#002400}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,123,38,.5)}.btn-secondary{color:#212529;background-color:#ff8c00;border-color:#ff8c00}.btn-secondary:hover{color:#fff;background-color:#d97700;border-color:#cc7000}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#d97700;border-color:#cc7000;box-shadow:0 0 0 .2rem rgba(222,125,6,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#212529;background-color:#ff8c00;border-color:#ff8c00}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#cc7000;border-color:#bf6900}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,125,6,.5)}.btn-success{color:#fff;background-color:#008f54;border-color:#008f54}.btn-success:hover{color:#fff;background-color:#00693e;border-color:#005c36}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#00693e;border-color:#005c36;box-shadow:0 0 0 .2rem rgba(38,160,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#008f54;border-color:#008f54}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#005c36;border-color:#004f2f}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,160,110,.5)}.btn-info{color:#fff;background-color:#00c9dc;border-color:#00c9dc}.btn-info:hover{color:#fff;background-color:#00a6b6;border-color:#009aa9}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#00a6b6;border-color:#009aa9;box-shadow:0 0 0 .2rem rgba(38,209,225,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#00c9dc;border-color:#00c9dc}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#009aa9;border-color:#008f9c}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,209,225,.5)}.btn-warning{color:#212529;background-color:#fdf314;border-color:#fdf314}.btn-warning:hover{color:#212529;background-color:#e9df02;border-color:#dcd302}.btn-warning:focus,.btn-warning.focus{color:#212529;background-color:#e9df02;border-color:#dcd302;box-shadow:0 0 0 .2rem rgba(220,212,23,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#fdf314;border-color:#fdf314}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#dcd302;border-color:#cfc702}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,212,23,.5)}.btn-danger{color:#fff;background-color:#dc1200;border-color:#dc1200}.btn-danger:hover{color:#fff;background-color:#b60f00;border-color:#a90e00}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#b60f00;border-color:#a90e00;box-shadow:0 0 0 .2rem rgba(225,54,38,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc1200;border-color:#dc1200}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#a90e00;border-color:#9c0d00}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,54,38,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light:focus,.btn-light.focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#006400;border-color:#006400}.btn-outline-primary:hover{color:#fff;background-color:#006400;border-color:#006400}.btn-outline-primary:focus,.btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(0,100,0,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#006400;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#006400;border-color:#006400}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,100,0,.5)}.btn-outline-secondary{color:#ff8c00;border-color:#ff8c00}.btn-outline-secondary:hover{color:#212529;background-color:#ff8c00;border-color:#ff8c00}.btn-outline-secondary:focus,.btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(255,140,0,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#ff8c00;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle{color:#212529;background-color:#ff8c00;border-color:#ff8c00}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,140,0,.5)}.btn-outline-success{color:#008f54;border-color:#008f54}.btn-outline-success:hover{color:#fff;background-color:#008f54;border-color:#008f54}.btn-outline-success:focus,.btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(0,143,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#008f54;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#008f54;border-color:#008f54}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,143,84,.5)}.btn-outline-info{color:#00c9dc;border-color:#00c9dc}.btn-outline-info:hover{color:#fff;background-color:#00c9dc;border-color:#00c9dc}.btn-outline-info:focus,.btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(0,201,220,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#00c9dc;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#00c9dc;border-color:#00c9dc}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,201,220,.5)}.btn-outline-warning{color:#fdf314;border-color:#fdf314}.btn-outline-warning:hover{color:#212529;background-color:#fdf314;border-color:#fdf314}.btn-outline-warning:focus,.btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(253,243,20,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#fdf314;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#fdf314;border-color:#fdf314}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(253,243,20,.5)}.btn-outline-danger{color:#dc1200;border-color:#dc1200}.btn-outline-danger:hover{color:#fff;background-color:#dc1200;border-color:#dc1200}.btn-outline-danger:focus,.btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,18,0,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc1200;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc1200;border-color:#dc1200}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,18,0,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:focus,.btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:focus,.btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#006400;text-decoration:none}.btn-link:hover{color:#001800;text-decoration:underline}.btn-link:focus,.btn-link.focus{text-decoration:underline;box-shadow:none}.btn-link:disabled,.btn-link.disabled{color:#6c757d;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media(min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media(min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media(min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media(min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=top],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#006400}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;flex:1 1 0%;min-width:0;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus~.custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:last-child),.input-group>.custom-select:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-prepend,.input-group-append{display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=radio],.input-group-text input[type=checkbox]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + .5rem + 2px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#006400;background-color:#006400}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,100,0,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#00e400}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#18ff18;border-color:#18ff18}.custom-control-input[disabled]~.custom-control-label,.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input[disabled]~.custom-control-label::before,.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA4IDgiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik02LjU2NC43NWwtMy41OSAzLjYxMi0xLjUzOC0xLjU1TDAgNC4yNmwyLjk3NCAyLjk5TDggMi4xOTN6Ii8+PC9zdmc+)}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#006400;background-color:#006400}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiIHZpZXdCb3g9IjAgMCA0IDQiPjxwYXRoIHN0cm9rZT0iI2ZmZiIgZD0iTTAgMmg0Ii8+PC9zdmc+)}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,100,0,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,100,0,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgdmlld0JveD0iLTQgLTQgOCA4Ij48Y2lyY2xlIHI9IjMiIGZpbGw9IiNmZmYiLz48L3N2Zz4=)}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,100,0,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,100,0,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjUiIHZpZXdCb3g9IjAgMCA0IDUiPjxwYXRoIGZpbGw9IiMzNDNhNDAiIGQ9Ik0yIDAgMCAyaDR6bTAgNUwwIDNoNHoiLz48L3N2Zz4=)no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;appearance:none}.custom-select:focus{border-color:#00e400;outline:0;box-shadow:0 0 0 .2rem rgba(0,100,0,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#00e400;box-shadow:0 0 0 .2rem rgba(0,100,0,.25)}.custom-file-input[disabled]~.custom-file-label,.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,100,0,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,100,0,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,100,0,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#006400;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#18ff18}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#006400;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#18ff18}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#006400;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion:reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#18ff18}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#006400}.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-sm,.navbar .container-md,.navbar .container-lg,.navbar .container-xl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat 50%;background-size:100% 100%}@media(max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media(min-width:576px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media(max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media(min-width:768px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media(max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media(min-width:992px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media(max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media(min-width:1200px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDMwIDMwIj48cGF0aCBzdHJva2U9InJnYmEoMCwwLDAsMC41KSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTQgN2gyMk00IDE1aDIyTTQgMjNoMjIiLz48L3N2Zz4=)}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text .search-results-container .result h5:not(:hover):not(:active),.search-results-container .result .navbar-light .navbar-text h5:not(:hover):not(:active),.navbar-light .navbar-text .search-results-full-container .result h5:not(:hover):not(:active),.search-results-full-container .result .navbar-light .navbar-text h5:not(:hover):not(:active){color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text .search-results-container .result h5:hover:not(:hover):not(:active),.search-results-container .result .navbar-light .navbar-text h5:hover:not(:hover):not(:active),.navbar-light .navbar-text .search-results-full-container .result h5:hover:not(:hover):not(:active),.search-results-full-container .result .navbar-light .navbar-text h5:hover:not(:hover):not(:active),.navbar-light .navbar-text a:focus,.navbar-light .navbar-text .search-results-container .result h5:focus:not(:hover):not(:active),.search-results-container .result .navbar-light .navbar-text h5:focus:not(:hover):not(:active),.navbar-light .navbar-text .search-results-full-container .result h5:focus:not(:hover):not(:active),.search-results-full-container .result .navbar-light .navbar-text h5:focus:not(:hover):not(:active){color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDMwIDMwIj48cGF0aCBzdHJva2U9InJnYmEoMjU1LDI1NSwyNTUsMC41KSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTQgN2gyMk00IDE1aDIyTTQgMjNoMjIiLz48L3N2Zz4=)}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text .search-results-container .result h5:not(:hover):not(:active),.search-results-container .result .navbar-dark .navbar-text h5:not(:hover):not(:active),.navbar-dark .navbar-text .search-results-full-container .result h5:not(:hover):not(:active),.search-results-full-container .result .navbar-dark .navbar-text h5:not(:hover):not(:active){color:#fff}.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text .search-results-container .result h5:hover:not(:hover):not(:active),.search-results-container .result .navbar-dark .navbar-text h5:hover:not(:hover):not(:active),.navbar-dark .navbar-text .search-results-full-container .result h5:hover:not(:hover):not(:active),.search-results-full-container .result .navbar-dark .navbar-text h5:hover:not(:hover):not(:active),.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text .search-results-container .result h5:focus:not(:hover):not(:active),.search-results-container .result .navbar-dark .navbar-text h5:focus:not(:hover):not(:active),.navbar-dark .navbar-text .search-results-full-container .result h5:focus:not(:hover):not(:active),.search-results-full-container .result .navbar-dark .navbar-text h5:focus:not(:hover):not(:active){color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px)calc(.25rem - 1px)0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px)calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img,.card-img-top,.card-img-bottom{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media(min-width:576px){.card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media(min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media(min-width:576px){.card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#006400;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#001800;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,100,0,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#006400;border-color:#006400}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:hover,.search-results-container .result h5.badge:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge:hover:not(:hover):not(:active),a.badge:focus,.search-results-container .result h5.badge:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge:focus:not(:hover):not(:active){text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#006400}a.badge-primary:hover,.search-results-container .result h5.badge-primary:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-primary:hover:not(:hover):not(:active),a.badge-primary:focus,.search-results-container .result h5.badge-primary:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-primary:focus:not(:hover):not(:active){color:#fff;background-color:#003100}a.badge-primary:focus,.search-results-container .result h5.badge-primary:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-primary:focus:not(:hover):not(:active),a.badge-primary.focus,.search-results-container .result h5.badge-primary.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-primary.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(0,100,0,.5)}.badge-secondary{color:#212529;background-color:#ff8c00}a.badge-secondary:hover,.search-results-container .result h5.badge-secondary:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-secondary:hover:not(:hover):not(:active),a.badge-secondary:focus,.search-results-container .result h5.badge-secondary:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-secondary:focus:not(:hover):not(:active){color:#212529;background-color:#cc7000}a.badge-secondary:focus,.search-results-container .result h5.badge-secondary:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-secondary:focus:not(:hover):not(:active),a.badge-secondary.focus,.search-results-container .result h5.badge-secondary.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-secondary.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(255,140,0,.5)}.badge-success{color:#fff;background-color:#008f54}a.badge-success:hover,.search-results-container .result h5.badge-success:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-success:hover:not(:hover):not(:active),a.badge-success:focus,.search-results-container .result h5.badge-success:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-success:focus:not(:hover):not(:active){color:#fff;background-color:#005c36}a.badge-success:focus,.search-results-container .result h5.badge-success:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-success:focus:not(:hover):not(:active),a.badge-success.focus,.search-results-container .result h5.badge-success.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-success.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(0,143,84,.5)}.badge-info{color:#fff;background-color:#00c9dc}a.badge-info:hover,.search-results-container .result h5.badge-info:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-info:hover:not(:hover):not(:active),a.badge-info:focus,.search-results-container .result h5.badge-info:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-info:focus:not(:hover):not(:active){color:#fff;background-color:#009aa9}a.badge-info:focus,.search-results-container .result h5.badge-info:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-info:focus:not(:hover):not(:active),a.badge-info.focus,.search-results-container .result h5.badge-info.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-info.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(0,201,220,.5)}.badge-warning{color:#212529;background-color:#fdf314}a.badge-warning:hover,.search-results-container .result h5.badge-warning:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-warning:hover:not(:hover):not(:active),a.badge-warning:focus,.search-results-container .result h5.badge-warning:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-warning:focus:not(:hover):not(:active){color:#212529;background-color:#dcd302}a.badge-warning:focus,.search-results-container .result h5.badge-warning:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-warning:focus:not(:hover):not(:active),a.badge-warning.focus,.search-results-container .result h5.badge-warning.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-warning.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(253,243,20,.5)}.badge-danger{color:#fff;background-color:#dc1200}a.badge-danger:hover,.search-results-container .result h5.badge-danger:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-danger:hover:not(:hover):not(:active),a.badge-danger:focus,.search-results-container .result h5.badge-danger:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-danger:focus:not(:hover):not(:active){color:#fff;background-color:#a90e00}a.badge-danger:focus,.search-results-container .result h5.badge-danger:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-danger:focus:not(:hover):not(:active),a.badge-danger.focus,.search-results-container .result h5.badge-danger.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-danger.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(220,18,0,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:hover,.search-results-container .result h5.badge-light:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-light:hover:not(:hover):not(:active),a.badge-light:focus,.search-results-container .result h5.badge-light:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-light:focus:not(:hover):not(:active){color:#212529;background-color:#dae0e5}a.badge-light:focus,.search-results-container .result h5.badge-light:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-light:focus:not(:hover):not(:active),a.badge-light.focus,.search-results-container .result h5.badge-light.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-light.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:hover,.search-results-container .result h5.badge-dark:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-dark:hover:not(:hover):not(:active),a.badge-dark:focus,.search-results-container .result h5.badge-dark:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-dark:focus:not(:hover):not(:active){color:#fff;background-color:#1d2124}a.badge-dark:focus,.search-results-container .result h5.badge-dark:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-dark:focus:not(:hover):not(:active),a.badge-dark.focus,.search-results-container .result h5.badge-dark.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-dark.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media(min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#003400;background-color:#cce0cc;border-color:#b8d4b8}.alert-primary hr{border-top-color:#a8caa8}.alert-primary .alert-link{color:#000100}.alert-secondary{color:#854900;background-color:#ffe8cc;border-color:#ffdfb8}.alert-secondary hr{border-top-color:#ffd49f}.alert-secondary .alert-link{color:#522d00}.alert-success{color:#004a2c;background-color:#cce9dd;border-color:#b8e0cf}.alert-success hr{border-top-color:#a6d8c3}.alert-success .alert-link{color:#00170e}.alert-info{color:#006972;background-color:#ccf4f8;border-color:#b8f0f5}.alert-info hr{border-top-color:#a2ebf2}.alert-info .alert-link{color:#003a3f}.alert-warning{color:#847e0a;background-color:#fffdd0;border-color:#fefcbd}.alert-warning hr{border-top-color:#fefba4}.alert-warning .alert-link{color:#555106}.alert-danger{color:#720900;background-color:#f8d0cc;border-color:#f5bdb8}.alert-danger hr{border-top-color:#f2a8a2}.alert-danger .alert-link{color:#3f0500}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#006400;transition:width .6s ease}@media(prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}@media(prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.media{display:flex;align-items:flex-start}.media-body{flex:1}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#006400;border-color:#006400}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal .list-group-item.active{margin-top:0}.list-group-horizontal .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media(min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm .list-group-item.active{margin-top:0}.list-group-horizontal-sm .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md .list-group-item.active{margin-top:0}.list-group-horizontal-md .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg .list-group-item.active{margin-top:0}.list-group-horizontal-lg .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl .list-group-item.active{margin-top:0}.list-group-horizontal-xl .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush .list-group-item{border-right-width:0;border-left-width:0;border-radius:0}.list-group-flush .list-group-item:first-child{border-top-width:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#003400;background-color:#b8d4b8}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#003400;background-color:#a8caa8}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#003400;border-color:#003400}.list-group-item-secondary{color:#854900;background-color:#ffdfb8}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#854900;background-color:#ffd49f}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#854900;border-color:#854900}.list-group-item-success{color:#004a2c;background-color:#b8e0cf}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#004a2c;background-color:#a6d8c3}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#004a2c;border-color:#004a2c}.list-group-item-info{color:#006972;background-color:#b8f0f5}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#006972;background-color:#a2ebf2}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#006972;border-color:#006972}.list-group-item-warning{color:#847e0a;background-color:#fefcbd}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#847e0a;background-color:#fefba4}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#847e0a;border-color:#847e0a}.list-group-item-danger{color:#720900;background-color:#f5bdb8}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#720900;background-color:#f2a8a2}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#720900;border-color:#720900}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0;appearance:none}a.close.disabled,.search-results-container .result h5.close.disabled:not(:hover):not(:active),.search-results-full-container .result h5.close.disabled:not(:hover):not(:active){pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media(prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid #e9ecef;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #e9ecef;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media(min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media(min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^=top]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^=top] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^=top] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^=right]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^=right] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^=right] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^=bottom]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^=bottom] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^=bottom] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^=left]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^=left] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^=left] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^=top]{margin-bottom:.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^=top]>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^=top]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^=top]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^=right]{margin-left:.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^=right]>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^=right]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^=right]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^=bottom]{margin-top:.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^=bottom]>.arrow{top:calc(-.5rem - 1px)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^=bottom]>.arrow::before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^=bottom]>.arrow::after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^=left]{margin-right:.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^=left]>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^=left]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^=left]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion:reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiNmZmYiIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA4IDgiPjxwYXRoIGQ9Ik01LjI1LjBsLTQgNCA0IDQgMS41LTEuNUw0LjI1IDRsMi41LTIuNUw1LjI1LjB6Ii8+PC9zdmc+)}.carousel-control-next-icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiNmZmYiIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA4IDgiPjxwYXRoIGQ9Ik0yLjc1LjBsLTEuNSAxLjVMMy43NSA0bC0yLjUgMi41TDIuNzUgOGw0LTQtNC00eiIvPjwvc3ZnPg==)}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#006400!important}a.bg-primary:hover,.search-results-container .result h5.bg-primary:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-primary:hover:not(:hover):not(:active),a.bg-primary:focus,.search-results-container .result h5.bg-primary:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-primary:focus:not(:hover):not(:active),button.bg-primary:hover,button.bg-primary:focus{background-color:#003100!important}.bg-secondary{background-color:#ff8c00!important}a.bg-secondary:hover,.search-results-container .result h5.bg-secondary:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-secondary:hover:not(:hover):not(:active),a.bg-secondary:focus,.search-results-container .result h5.bg-secondary:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-secondary:focus:not(:hover):not(:active),button.bg-secondary:hover,button.bg-secondary:focus{background-color:#cc7000!important}.bg-success{background-color:#008f54!important}a.bg-success:hover,.search-results-container .result h5.bg-success:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-success:hover:not(:hover):not(:active),a.bg-success:focus,.search-results-container .result h5.bg-success:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-success:focus:not(:hover):not(:active),button.bg-success:hover,button.bg-success:focus{background-color:#005c36!important}.bg-info{background-color:#00c9dc!important}a.bg-info:hover,.search-results-container .result h5.bg-info:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-info:hover:not(:hover):not(:active),a.bg-info:focus,.search-results-container .result h5.bg-info:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-info:focus:not(:hover):not(:active),button.bg-info:hover,button.bg-info:focus{background-color:#009aa9!important}.bg-warning{background-color:#fdf314!important}a.bg-warning:hover,.search-results-container .result h5.bg-warning:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-warning:hover:not(:hover):not(:active),a.bg-warning:focus,.search-results-container .result h5.bg-warning:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-warning:focus:not(:hover):not(:active),button.bg-warning:hover,button.bg-warning:focus{background-color:#dcd302!important}.bg-danger{background-color:#dc1200!important}a.bg-danger:hover,.search-results-container .result h5.bg-danger:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-danger:hover:not(:hover):not(:active),a.bg-danger:focus,.search-results-container .result h5.bg-danger:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-danger:focus:not(:hover):not(:active),button.bg-danger:hover,button.bg-danger:focus{background-color:#a90e00!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:hover,.search-results-container .result h5.bg-light:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-light:hover:not(:hover):not(:active),a.bg-light:focus,.search-results-container .result h5.bg-light:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-light:focus:not(:hover):not(:active),button.bg-light:hover,button.bg-light:focus{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:hover,.search-results-container .result h5.bg-dark:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-dark:hover:not(:hover):not(:active),a.bg-dark:focus,.search-results-container .result h5.bg-dark:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-dark:focus:not(:hover):not(:active),button.bg-dark:hover,button.bg-dark:focus{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #e9ecef!important}.border-top{border-top:1px solid #e9ecef!important}.border-right{border-right:1px solid #e9ecef!important}.border-bottom{border-bottom:1px solid #e9ecef!important}.border-left{border-left:1px solid #e9ecef!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#006400!important}.border-secondary{border-color:#ff8c00!important}.border-success{border-color:#008f54!important}.border-info{border-color:#00c9dc!important}.border-warning{border-color:#fdf314!important}.border-danger{border-color:#dc1200!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media(min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media(min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media(min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media(min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.85714286%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media(min-width:576px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media(min-width:768px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media(min-width:992px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media(min-width:1200px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media(min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media(min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media(min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media(min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports(position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media(min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media(min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media(min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media(min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,liberation mono,courier new,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media(min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media(min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media(min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media(min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#006400!important}a.text-primary:hover,.search-results-container .result h5.text-primary:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-primary:hover:not(:hover):not(:active),a.text-primary:focus,.search-results-container .result h5.text-primary:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-primary:focus:not(:hover):not(:active){color:#001800!important}.text-secondary{color:#ff8c00!important}a.text-secondary:hover,.search-results-container .result h5.text-secondary:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-secondary:hover:not(:hover):not(:active),a.text-secondary:focus,.search-results-container .result h5.text-secondary:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-secondary:focus:not(:hover):not(:active){color:#b36200!important}.text-success{color:#008f54!important}a.text-success:hover,.search-results-container .result h5.text-success:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-success:hover:not(:hover):not(:active),a.text-success:focus,.search-results-container .result h5.text-success:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-success:focus:not(:hover):not(:active){color:#004327!important}.text-info{color:#00c9dc!important}a.text-info:hover,.search-results-container .result h5.text-info:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-info:hover:not(:hover):not(:active),a.text-info:focus,.search-results-container .result h5.text-info:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-info:focus:not(:hover):not(:active){color:#008390!important}.text-warning{color:#fdf314!important}a.text-warning:hover,.search-results-container .result h5.text-warning:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-warning:hover:not(:hover):not(:active),a.text-warning:focus,.search-results-container .result h5.text-warning:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-warning:focus:not(:hover):not(:active){color:#c3bb02!important}.text-danger{color:#dc1200!important}a.text-danger:hover,.search-results-container .result h5.text-danger:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-danger:hover:not(:hover):not(:active),a.text-danger:focus,.search-results-container .result h5.text-danger:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-danger:focus:not(:hover):not(:active){color:#900c00!important}.text-light{color:#f8f9fa!important}a.text-light:hover,.search-results-container .result h5.text-light:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-light:hover:not(:hover):not(:active),a.text-light:focus,.search-results-container .result h5.text-light:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-light:focus:not(:hover):not(:active){color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:hover,.search-results-container .result h5.text-dark:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-dark:hover:not(:hover):not(:active),a.text-dark:focus,.search-results-container .result h5.text-dark:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-dark:focus:not(:hover):not(:active){color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,*::before,*::after{text-shadow:none!important;box-shadow:none!important}a:not(.btn),.search-results-container .result h5:not(.btn):not(:hover):not(:active),.search-results-full-container .result h5:not(.btn):not(:hover):not(:active){text-decoration:underline}abbr[title]::after{content:" (" attr(title)")"}pre{white-space:pre-wrap!important}pre,blockquote{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#e9ecef}.table .thead-dark th{color:inherit;border-color:#e9ecef}}.hidden{display:none!important}.display-contents{display:contents}.overflow-hidden{overflow:hidden}.pointer{cursor:pointer}@media screen and (max-width:767px){.hide-on-mobile{display:none}}.header-image{background-repeat:no-repeat;background-attachment:scroll;background-position:50% 100%;background-size:cover;border-radius:0}nav[role=navigation]{z-index:1000!important}.hero{position:relative}.hero .jumbotron{display:flex;flex-direction:column;justify-content:center;align-items:center}.hero .particles-js{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden}@media(max-width:991.98px){.search-results-container.show{display:none}}@media(max-width:991.98px){.navbar-collapse{max-height:0;transition:max-height .5s cubic-bezier(0,1,0,1);overflow:hidden;display:block}.navbar-collapse.in{max-height:65em;transition:max-height 1s ease-in-out}}.faq{text-align:left}.faq .card{border:none;margin-bottom:10px}.faq .card .card-header{border:1px solid transparent;color:#006400;cursor:pointer;display:inline-block;font-size:1rem;font-weight:400;line-height:1.5;padding:15px;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;user-select:none;vertical-align:middle}select.error,input.error,textarea.error{border-color:#b94a48;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);border-color:#b94a48}select.error,input.error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAARCAYAAAA/mJfHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAYSmlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjarVllVBV/t94TJ6hDdx26pLu7QboVOHRzODQYoIAICmKggoKCiogKBiklJqKIKKhYhIgoKgaKinI/gP7f9733frhr3d+HWc888+y9n73XrJk18wMQFqDR6XEoB0B8QgrD3daC6uvnTyW9ABSEgAJrQJUWmkw3d3V1gv95IQBfRwEBALivTKPT4+D/tjjDwpNDARBXAAgJSw6NB0AuAuBCoXRGCgBhCACk0lPoKQCELwDAw/D18wcgkgGAJ3IFiwAAT8gKVgMAHoanuyUA0QqAzEqjMSIBKK4AQE0LjUwBoNABiFwJYdEJADx5AEST0ChaGIDQVQBYEx+fGAYgNA8A8iH/kify33KG/M1Jo0X+xSu9AAAA2So6mR5Hy4T/7xUfl/qnhiQAsEYx7NwBgAcAORmb6OgOAKwASGdCyFoXAOACQG5GhwGs4rGoVDuvVf1caLKlPwDwAaAQRrNyBAARAJQvNdbLfBVr0BgAK3p0bXSKvecqDmEkuq/mR9PCk609/uCocHun1ZyFCXFr/+CqiGgbewDgAEAvZkV5+qz4RK+mRXuvBQAKADqUHOvhuKp/nhVlufaPhpHq7gUA0gDolwiGjfuKBhOIT/7TF6YSSrP2AAABAMwsJcrTbiUW8w1P9nX64y0s3Mp6xQMWFp7gteoZS6GnWLivxhbQ41xX9VhVeJyt+8qcsabkNI8/scMpDM/VmWOTMTQH1xX/2Fd6iqvnijccByewBCugQipQIQQSIQaiB+da54C6esUGaMCASAgH5VXmT4QP0IABCUADD8iCd5AA4ZD8N84CaMCAcEiDBPj1l105KkME0IABaRAOyRALr4AB8bgQboIb4k64CW6Gm+AauB6u/yeOyv6nKtGaaEW0I9oQFf76CIVEiINEYED0f+f+iSS8ItwjTBJGCOOEx+AIcRAOqcCAcEj425k3vAQGRP85D4rewvgP51RwhnFIXZ1KOIRAAsz+0eCyuAaujVvgxrgJrg9UnA8XAmVcC9fDzXFT3BDXxvX/zWHqXxf/zPI/64VDwr/1uMpTFCnaqy5C/vq3/Kv6zyyW/zKjMEgEx/9UYoXYBewGdhnrxzqxVqBiPVgbdhvrwlr/5U54CQyI/FvNHcIhAWIhDqL/aNQa1GbVlv5bddqqAwaEQzJASnhGCgCAZSI9kxEdGZVCNafT48Kp9gmhKmuoGmrq2gC+fv7UlcfHZ3dAAADhu/sPl6gOoB8KgGz9hwt+D9AaA0Dm+oeTbQVg1wDo3x+aykhb4XAAAAIwAzvwgCCIgRTIgzJogA4YghlYgwO4gCf4QSCEQhTEAwPSYQPkQgEUwy7YBxVQDbVwEs7AeWiFTrgM12EAhmAEnsA4TMNbmIev8BNBEBLChnAjgog4IoMoIRqIHmKCWCNOiDvihwQjkUgCkopsQLYixchupAI5itQj55B25DLSj9xDHiMTyCzyCfmBYigryoOKorKoKqqHmqOOqCe6Ho1Ek9AsNA8tQQ+gNehptAW9jA6gI+g4+hZdwABjwfgwCUwZ08MsMRfMH4vAGNgmrAgrx2qws1gHdgO7j41jc9h3nIhz41RcGTfE7XAvPBRPwjfhO/AK/CTegl/F7+MT+Dz+m8BGECEoEQwI9gRfQiQhnVBAKCecIDQTrhFGCNOEr0QikY8oR9Ql2hH9iDHEbOIO4mFiI7GXeI84RVwgkUiCJCWSMcmFRCOlkApIB0mnST2kYdI0aZHMQhYna5BtyP7kBPIWcjn5FLmbPEyeIf9k4mCSYTJgcmEKY8pkKmU6xtTBdJdpmuknMyezHLMxsydzDHMu8wHms8zXmJ8yf2ZhYZFk0WdxY4lmyWE5wNLEcpNlguU7KxerIqsl6zrWVNYS1jrWXtbHrJ/Z2Nhk2czY/NlS2ErY6tmusD1nW6RwU1Qo9pQwymZKJaWFMkx5z87ELsNuzh7InsVezn6B/S77HAcThyyHJQeNYxNHJUc7x0OOBU5uTnVOF854zh2cpzj7OV9zkbhkuay5wrjyuGq5rnBNcWPcUtyW3KHcW7mPcV/jnuYh8sjx2PPE8BTznOEZ5Jnn5eLV4vXmzeCt5O3iHefD+GT57Pni+Er5zvON8v3gF+U35w/n385/ln+Y/5uAsICZQLhAkUCjwIjAD0GqoLVgrGCZYKvgMyFcSFHITShdqEromtCcMI+woXCocJHweeExEVREUcRdJFukVuS2yIKomKitKF30oOgV0TkxPjEzsRixvWLdYrPi3OIm4tHie8V7xN9Qeanm1DjqAepV6ryEiISdRKrEUYlBiZ+ScpJeklskGyWfSTFL6UlFSO2V6pOalxaXdpbeIN0gPSbDJKMnEyWzX+aGzDdZOVkf2W2yrbKv5QTk7OWy5BrknsqzyZvKJ8nXyD9QICroKcQqHFYYUkQVtRWjFCsV7yqhSjpK0UqHle6tIazRX5OwpmbNQ2VWZXPlNOUG5QkVPhUnlS0qrSrvVaVV/VXLVG+o/lbTVotTO6b2RJ1L3UF9i3qH+icNRY1QjUqNB5psmjaamzXbND9qKWmFa1VpPdLm1nbW3qbdp/1LR1eHoXNWZ1ZXWjdY95DuQz0ePVe9HXo39Qn6Fvqb9Tv1vxvoGKQYnDf4YKhsGGt4yvC1kZxRuNExoyljSWOa8VHjcROqSbDJEZNxUwlTmmmN6aSZlFmY2QmzGXMF8xjz0+bvLdQsGBbNFt8sDSw3WvZaYVa2VkVWg9Zc1l7WFdbPbSRtIm0abOZttW2zbXvtCHaOdmV2D+1F7UPt6+3nHXQdNjpcdWR19HCscJx0UnRiOHU4o84Oznucn66VWZuwttUFXOxd9rg8c5VzTXK95EZ0c3WrdHvlru6+wf2GB7dHkMcpj6+eFp6lnk+85L1Svfq82b3Xedd7f/Ox8tntM+6r6rvRd8BPyC/ar82f5O/tf8J/IcA6YF/A9DrtdQXrRtfLrc9Y3x8oFBgX2BXEHkQLuhBMCPYJPhW8RHOh1dAWQuxDDoXMh1qG7g99G2YWtjdsNtw4fHf4TIRxxO6I15HGkXsiZ6NMo8qj5qItoyuiP8bYxVTHfIt1ia2LXY7ziWuMJ8cHx7cncCXEJlxNFEvMSLxHV6IX0MeTDJL2Jc0zHBknkpHk9cltKTwp9JTbqfKp+akTaSZplWmL6d7pFzI4MxIybmcqZm7PnMmyyTqejWeHZvdtkNiQu2Fio/nGo5uQTSGb+jZLbc7bPJ1jm3Mylzk3NvfOFrUtu7d82eqztSNPNC8nbyrfNr+hgFLAKHi4zXBbdSFeGF04uF1z+8Htv4vCim4VqxWXFy/tCN1xa6f6zgM7l0siSgZLdUqrdhF3JewaLTMtO7mbc3fW7qk9znta9lL3Fu39si9oX3+5Vnn1fub9qfvHDzgdaDsofXDXwaWKqIqRSovKxkMih7Yf+nY47PBwlVnV2WrR6uLqH0eijzw6anu0pUa2pryWWJtW++qY97Ebx/WO158QOlF84lddQt34SfeTV+t16+tPiZwqbUAbUhtmT687PXTG6kzbWeWzRxv5GouboCm16c254HOj5x3P913Qu3D2oszFQ83czUUtSEtmy3xrVOt4m1/bvXaH9r4Ow47mSyqX6jolOiu7eLtKu5m787qXe7J6FnrpvXOXIy9P9QX1Pbnie+XBVberg9ccr928bnP9yg3zGz03jW929hv0t9/Su9U6oDPQclv7dvMd7TvNgzqDLXd177YN6Q913DO61z1sOnz5vtX96w/sHwyMrB25N+o1+ujhuofjj8IevX4c9/jjWNrYzyc5TwlPi55xPCt/LvK85oXCi8ZxnfGuCauJ25Mek0+mQqfevkx+uTSd94rtVfmM+Ez9a43XnbM2s0NvAt5Mv6W//TlX8I7z3aH38u8vfjD7cHved376I+Pj8qcdnwU/133R+tK34Lrw/Gv815/fihYFF09+1/t+44fPj5mf6UukpQO/FH51/Hb8/XQ5fnmZTmPQAAAAAwA0IgLgUx0Amx8A9xAAM2Xl+2t1YQgACgAkEAMHKIYpRBFJQHpRQTQFHcPssSu4Lf6AEE/kJPaRNpBNmEhMz5jbWQ6xlrLVUZ5ycHA6cm3n7ufl5FvHf1oQF6IJd4lSxXaIL0qESY5Jr5Xpl1OVL1F4q2S/plr5q6ql2k71IU02LQvtZJ1Dur164/q/DPmNlIz1TaxN3c1CzZMt8iz3WzVY99jct521W3bgdVzjZOkcsDbaJc013223e7VHg2erV5/3gM+w72O/F/5TAa/XvVv/OvBp0GBwD60xpCp0Z1hWeESEW6RhlHQ0JfprzIvY63H18TsT6IkedN0koaQlxvPk3pTa1Py0iHT7DKVM5sw3WbezmzYc2Ji3KX1zUg4jN2tL0dajeV35L7YxFRptpxfVFo/uZC4xKo3fVVU2uPvX3jX7AsqL9rccGK9gqdQ+FHR4e9X56idH8RrlWu9jm4+fPHGvbrGeesqpYcPp82c+Nho0lZ77cCHg4t0Wl9YH7UYdKZfqO592s/Ro9npfTurLv1J2tfxa+fWyG4U3t/Zvu7VzYOft/Dspgz53Ve7+HOq9lz2sM/z1/sMH7SMVoxsfBj2yeCwzxjT27sm9p83PKp5vfBE8bjWhMMkx+X3q1cvR6f5Xl2cuvW6fbX9z/G3JXNq7wPfWH5TmOeYXPo596v589Ev+QtRXx2+qi9yL374//dH7s2Yp71f4b6tlyeVlACCCEJhBBlxDuBEnZBfyAtVES9DPWBA2invhzwh0IoXYSgonC5HHmA4xR7JYsBqzeVKi2HM4jnBe5prl4eW14svkbxT4IKQizBDpFGMR96aekliWMpfOlemRXZLXVYhRPKw0sOaTCq+qppqdeoBGpGaSVqb2Rp0s3Ri9AH0nA2NDNSNJY14TsskP03dmE+YjFrcsu60uWNfZHLAttEu3j3Lwc7Rz0nOWW8vrgrt8cZ10u+fe69HkWeVV6J3sE+hr76fpLxpADHi/bnR9V2BtUFFwIs0zRCuUNXQyrD28NCIi0iiKM+pV9KWYstjwOIN49viphNbEQrpfklLSEmMw+UgKI9UyjTdtJr09Y0dmYJZaNpr9cEPjxuJN8Zu9cqxyDbbobzXOs8v3LUjYtq3w+PYrRRPFv3eKlOiXeu9KLtu1+/Se/r2vytH9Igd0DrpVxFcWHzp9eKjq6xHJo641W2vbj308oVKXdPJi/bcG/dMbznQ3QpP5ua3nr10kNNu2FLbeaCd1WF/a0tnV9aVHttfjcnZf1ZVLV0euzV7/dhPv574lMaB62/iO06D/3aih9HsFw/vu1zxoHOkc7X84+mj68Zcn2FOeZzLP9V44jUdO1E7OvpSb9n9VMHPq9Y3ZiTeLc5R3Mu9NPwTM53wc+qz5Zc/C52/uixd/CPzMX1r8nb68DAA4cIIirIUc6EVIiAGSgrSiKOqMHkF/YoHYLdwIbyHoEfqIrsQpUjZZmHyDaSdzKIsRqzDrb7ZJygB7M8dxzgNcJdyFPPm8BXzF/HsEqgUbhNqEu0S6RLvFesS7qZckmiUbpA5LF8ukyq6TM5OXVACFJ4qtSsVrvJWpym9UmlVz1BzV+dQnNBo0U7VMtZm07+sc1o3S09Jb1O82yDd0NOIyGjOuMYkx1TBdMrtuXmax3lLR8pvVFetSmwBbOdtPdt32RQ7ejhKOb51anHPWOrnwuUy4Nrgluxt6oB63PHd7+XtTvWd8zvqm+hn6o/79AaXrPNbzrX8cWBm0Plg0+BntcMj6UJHQsbAD4d4R3BF3I4ujrKMh+lJMWqx67FxcXXxIgkjCw8Q99LVJ5KTLjKxkzeS5lOOpgWn8aXfTt2WYZixmNmVFZ1OzH2/Yu9Fzk+Cm6c1tOXtzM7dEbF2X55cfUBC+LbUwf3t50Ynilh3Xd46UTJd+KcN2c++R3Ku2z6Dccr/DAbeDfhUhlYmHNh/eU3W6euDIhxqZ2sxjQyfk6jadHD2l3JB3+slZ9cbCpufndS4UX3zRotm6re1ph+alos7JbqOeA71f+zyvNF+Tu37spnL/tYHYO9KDc0M3hs89qB9tenR57NkzeKE2UfeyYKboTet79o+FCwKLzUs+y8sAK//hAACIOgDHpwC8jwK4BQDUKQHIVAJQeABc2QA89QG1KAXk8UFAbM/+fX+wgRzYQARsg5PQD28RCqKOeCFZyGGkE3mCLKGiqCkaghagp9C76BdMGDPHorBdWDs2ibPg2ngwvgNvw18SuAimhATCUcIIkZloTswgnifOkeRJkaQ60ixZhZxK7mFiYfJnOs2MMPsyn2ehsCSwDLPqsR5hI7Mx2J5THCjt7PLsFRxsHLkc3zgTOV9zhXK94A7hnuGJ5/nKm8tH4TvMr8p/RSBAYEGwTEhd6L5wuoioyJDoNjELcRC/TM2XcJYUlHwtdUm6TCZG1kZORp5VfkFhUnFY6eqaDuULKk2qjWrn1ds0ejUHtJ5rf9TF9Xj1pQyUDdWN1IwVTaimXGao2QfzJxY9ljVWhdaJNr62Fnaq9mIO7I6Y46LTvPObtdMuk64Tbi/d33p89vzlzeTD7yvnp+/vHBC6Lnv9vsCmoMHgdyGUUM0wv/DNEbWR16Kmon/FcsVJxCsmqCQq0xWSJBl8yUzJP1Jm04TSnTPyMnuyfm+w3rhn09sc59xLW7Xy2gvst01t31YsseNsiVnpeFnZHt99xvvtD6ZXXqsSPkKpQWu/H/9U975+rmHuzIfGhXO/LpJbhNtUO6w6/bqje9P6Nl3Nub7xZtqtuNvBg8VDbcNvRiQern9c/eTVc/Xx3MmRaaWZwtmZOdv3pz5yfM5eeLcY8WPmF315GQDYQQXcIBUqoAdeIiyIBhKA5CH1yADyAeVBDdBgtBBtQh9jGKaM+WH52DnsBc6GG+GxeCV+B/9NUCeEEQ4RRojsRCfiduJNEjPJmbSbNEaWITPIfUx8THFM15mlmLcwT7M4sHSwKrFWs/Gy7aAQKVvYgT2XA+Mo5KRw7ueS5GrkNuMe4YnnJfLW8JnzTfIXCCgLjArmCqkJjQvvEbETxUX7xLaK21BZqaMSNZLJUjbSYtKLMqOyrXJH5PcrlCmWKJWs2a1coXJCtVntpvpzjW9avNoGOqG6JXpd+h8MZYyCjCtNnpiJmYdZNFr+tLa2KbYdsCc46DqGOBU4n1h72WXMdd4d9+DzVPQy8/bzSfYt9TvrPxjwcT1foHFQRHAZrTvkfZhUuG9EaeT1qF8xWrHRcVXx9xJRukZSMKMk+VLK6zT2dN2M4MzirLbsmY38m+w3b8w5n/tmq1Te+vyKgkeF/Nv9iqqKX+5ULskovV4msDtxz+19auWVBygHt1eyHtpXJVd942h0Leux8yf8T+L1TQ1BZzjOXmnKOK964XVzXWt0u3LHp86O7i29Tn38V6auNd3Y0O8wIHh7aNDr7tS9rPtiDwZHix95jMk+RZ5Nvrg+0TBVOs2Y8ZgVflM9J/fu3AeT+cFPQZ8/LOR8Y188+EPsZ/Uvod+ly8sAwA/mQIdquAvLiAYSgRxEriGfUUnUHc1DW9E5TALzxXZh/TiGm+BZeCu+QNAmpBG6iASiC7GS+IZkSNpFek22Ih9jIjPRmZ4yOzH3suiydLBasN5m82N7Q9nEzsvexOHC8ZGznMuEa5b7MI8HLxvvLb7t/E4CXAJjgseFGMLmItwib0Wvix0TL6DGSnhKmktpSMvJiMsKywnJUxWUFPWVHNfQlDeoVKh2qb3UoGgaaTG0z+p80NPWzzUYNpI3zjN5ZeZk3mqpZHXMRsK21l7BodnJyvmRC92N1b3JM8CbyafLLy1Aa91iYG/wzpDAMJ0I1sjH0RWx9nGzCZmJS0kpjOkU19QL6ZwZjMwH2QYbjm5i2ZyRM7PFd+vtfIuCjkKt7S3Fxjv6S/xK35Zt2sO5t6ZcdX/7QZOKnkNGh1uqCUecju6reXFM8Xj6iWsneesjTnWcppwJO9vZxHuOfn7gonxzUcu7Nrf21ktinQVd73t8ei/3KV3Zd3X5esyNB/1mtxpu891JHrw1JHwvavj0/TcjUqM+D7c8Ovn41tj0k6VnHM/FXyiNa08YTJpMmb00mzZ5ZTCj+1p9VvGN5FvK29m59nfp77Xfz304Pu/3kflj56eIzxyf276sW4CFmq8WXye/bV4UWWz/7vV9/seOn3I/+5YClxZ/7fmt+rt/OWx5GSA5QlNjZSeK1QKA8Hx5+bMsAGk3wK+y5eWfNcvLv2oBsKcAvXErezsAAEQOgEO1/9sey38BOi/O6KPLSP4AADwwaVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzAxNCA3OS4xNTY3OTcsIDIwMTQvMDgvMjAtMDk6NTM6MDIgICAgICAgICI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICAgICAgICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICAgICAgICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZXhpZj0iaHR0cDovL25zLmFkb2JlLmNvbS9leGlmLzEuMC8iPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChNYWNpbnRvc2gpPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx4bXA6Q3JlYXRlRGF0ZT4yMDE1LTA1LTE1VDEwOjM4OjU1KzAyOjAwPC94bXA6Q3JlYXRlRGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNS0wNS0xNVQxMDozODo1NSswMjowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTUtMDUtMTVUMTA6Mzg6NTUrMDI6MDA8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOjU4ZmM5Yzg4LWFiYWUtNGEzMC1iNGUxLTUyMTQyZWYzMzM4NDwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjM4YmMxOTAwLTNiNmMtMTE3OC05ZDQ5LWY0MzVhZTM4NTFiMTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOmQ1ZjJhY2QyLTQ2ZDUtNGVlZS05NDllLThkMDI0MTljZjA3ODwveG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SGlzdG9yeT4KICAgICAgICAgICAgPHJkZjpTZXE+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmNyZWF0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDpkNWYyYWNkMi00NmQ1LTRlZWUtOTQ5ZS04ZDAyNDE5Y2YwNzg8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTUtMDUtMTVUMTA6Mzg6NTUrMDI6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo1OGZjOWM4OC1hYmFlLTRhMzAtYjRlMS01MjE0MmVmMzMzODQ8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTUtMDUtMTVUMTA6Mzg6NTUrMDI6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgPC9yZGY6U2VxPgogICAgICAgICA8L3htcE1NOkhpc3Rvcnk+CiAgICAgICAgIDxwaG90b3Nob3A6VGV4dExheWVycz4KICAgICAgICAgICAgPHJkZjpCYWc+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT7DlzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+w5c8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+YTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+YTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOkJhZz4KICAgICAgICAgPC9waG90b3Nob3A6VGV4dExheWVycz4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHBob3Rvc2hvcDpJQ0NQcm9maWxlPkRpc3BsYXk8L3Bob3Rvc2hvcDpJQ0NQcm9maWxlPgogICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3BuZzwvZGM6Zm9ybWF0PgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICAgICA8dGlmZjpYUmVzb2x1dGlvbj43MjAwMDAvMTAwMDA8L3RpZmY6WFJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOllSZXNvbHV0aW9uPjcyMDAwMC8xMDAwMDwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6UmVzb2x1dGlvblVuaXQ+MjwvdGlmZjpSZXNvbHV0aW9uVW5pdD4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT42NTUzNTwvZXhpZjpDb2xvclNwYWNlPgogICAgICAgICA8ZXhpZjpQaXhlbFhEaW1lbnNpb24+MTk8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFlEaW1lbnNpb24+MTc8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/Pmkb7KYAAAAgY0hSTQAAbZgAAHOOAAD6zAAAhPoAAHmBAAD9EwAAMG0AABIpDR4mTgAAAOZJREFUeNrMlL0NwyAQhZ+jLJAVkE4M4BVMR50RvIIzAivYI6S+zh4hHgAhZYWM4DTnCCFsoshFnkQBB9/9impZFhylEw5UFsaaatbUbj1iTR1ruhRhrKkGMALoWVOXsY8AHIAHa1KlyO4AVq+ONbkE1MhWAejjh+cMbBDPqzqJQAGoM3c/qnLdlPRcod7G+jAVYQJs0zT2QKXRmADMufMcaC9NJR1VW46sD6YI2wC9og7HkV+tD6/SaKQgIytWk9Y0B5tTkPVhljqZnbubNevFs7E+PBNbI9HfrA/DV6Pxn7/Gr3oPAAwLXEdIhTGuAAAAAElFTkSuQmCC);background-position:right 5px center;background-repeat:no-repeat}select.valid,input.valid{border-color:#468847;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAgVBMVEUAAABetV5buFtcuFxcuVxdu11cuFxbuFtcuFxcuFxbtltcuFxbtltetl5cuFxct1xduV1fuF9cuFxcuFxbultcuFxduF1gtWBduV1cuFxcuVxcuFxcuFxcuFxet15dt11cuFxcuFxbt1teuF5duV1euF5cuVxcuFxcuFxcuFwAAADG3XcxAAAAKXRSTlMAJrDPRSnn1OjCKvM4MamLFivp8jvI1xgs6jpL++w5UvrxUU83RMe6MlhBCPsAAAABYktHRACIBR1IAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH4AwTFzUBkZPjhwAAAHBJREFUGNNjYCAJMDIxsyDzWdk0NdmR+RyampqcCD4XiM/Nw8DLxy8A4gsKAfnCIgwMopqaYuIMDBIwPgOzJkhEQhLElwIplZYBMmWFQXw5iGHyCppgoCgHM14JLKLIg7BQGSiiqILsRFU1dQ3iPQgAPhMLEPHXqSUAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTYtMTItMTlUMjM6NTM6MDErMDE6MDCbiS6WAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE2LTEyLTE5VDIzOjUzOjAxKzAxOjAw6tSWKgAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAAASUVORK5CYII=);background-position:right 5px center;background-repeat:no-repeat;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}input[type=file].error{color:#b94a48;background:0 0;box-shadow:none}input[type=file].valid{color:#468847;background:0 0;box-shadow:none}.form-error{display:block;color:#b94a48;margin-top:5px;margin-bottom:10px;line-height:140%}span.help{color:#999;font-size:90%}select.async-validation,input.async-validation,select.validating-server-side,input.validating-server-side{opacity:.5;background-image:url(data:image/gif;base64,R0lGODlhEAAQAPQAAP///wAAAPDw8IqKiuDg4EZGRnp6egAAAFhYWCQkJKysrL6+vhQUFJycnAQEBDY2NmhoaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH+GkNyZWF0ZWQgd2l0aCBhamF4bG9hZC5pbmZvACH5BAAKAAAAIf8LTkVUU0NBUEUyLjADAQAAACwAAAAAEAAQAAAFdyAgAgIJIeWoAkRCCMdBkKtIHIngyMKsErPBYbADpkSCwhDmQCBethRB6Vj4kFCkQPG4IlWDgrNRIwnO4UKBXDufzQvDMaoSDBgFb886MiQadgNABAokfCwzBA8LCg0Egl8jAggGAA1kBIA1BAYzlyILczULC2UhACH5BAAKAAEALAAAAAAQABAAAAV2ICACAmlAZTmOREEIyUEQjLKKxPHADhEvqxlgcGgkGI1DYSVAIAWMx+lwSKkICJ0QsHi9RgKBwnVTiRQQgwF4I4UFDQQEwi6/3YSGWRRmjhEETAJfIgMFCnAKM0KDV4EEEAQLiF18TAYNXDaSe3x6mjidN1s3IQAh+QQACgACACwAAAAAEAAQAAAFeCAgAgLZDGU5jgRECEUiCI+yioSDwDJyLKsXoHFQxBSHAoAAFBhqtMJg8DgQBgfrEsJAEAg4YhZIEiwgKtHiMBgtpg3wbUZXGO7kOb1MUKRFMysCChAoggJCIg0GC2aNe4gqQldfL4l/Ag1AXySJgn5LcoE3QXI3IQAh+QQACgADACwAAAAAEAAQAAAFdiAgAgLZNGU5joQhCEjxIssqEo8bC9BRjy9Ag7GILQ4QEoE0gBAEBcOpcBA0DoxSK/e8LRIHn+i1cK0IyKdg0VAoljYIg+GgnRrwVS/8IAkICyosBIQpBAMoKy9dImxPhS+GKkFrkX+TigtLlIyKXUF+NjagNiEAIfkEAAoABAAsAAAAABAAEAAABWwgIAICaRhlOY4EIgjH8R7LKhKHGwsMvb4AAy3WODBIBBKCsYA9TjuhDNDKEVSERezQEL0WrhXucRUQGuik7bFlngzqVW9LMl9XWvLdjFaJtDFqZ1cEZUB0dUgvL3dgP4WJZn4jkomWNpSTIyEAIfkEAAoABQAsAAAAABAAEAAABX4gIAICuSxlOY6CIgiD8RrEKgqGOwxwUrMlAoSwIzAGpJpgoSDAGifDY5kopBYDlEpAQBwevxfBtRIUGi8xwWkDNBCIwmC9Vq0aiQQDQuK+VgQPDXV9hCJjBwcFYU5pLwwHXQcMKSmNLQcIAExlbH8JBwttaX0ABAcNbWVbKyEAIfkEAAoABgAsAAAAABAAEAAABXkgIAICSRBlOY7CIghN8zbEKsKoIjdFzZaEgUBHKChMJtRwcWpAWoWnifm6ESAMhO8lQK0EEAV3rFopIBCEcGwDKAqPh4HUrY4ICHH1dSoTFgcHUiZjBhAJB2AHDykpKAwHAwdzf19KkASIPl9cDgcnDkdtNwiMJCshACH5BAAKAAcALAAAAAAQABAAAAV3ICACAkkQZTmOAiosiyAoxCq+KPxCNVsSMRgBsiClWrLTSWFoIQZHl6pleBh6suxKMIhlvzbAwkBWfFWrBQTxNLq2RG2yhSUkDs2b63AYDAoJXAcFRwADeAkJDX0AQCsEfAQMDAIPBz0rCgcxky0JRWE1AmwpKyEAIfkEAAoACAAsAAAAABAAEAAABXkgIAICKZzkqJ4nQZxLqZKv4NqNLKK2/Q4Ek4lFXChsg5ypJjs1II3gEDUSRInEGYAw6B6zM4JhrDAtEosVkLUtHA7RHaHAGJQEjsODcEg0FBAFVgkQJQ1pAwcDDw8KcFtSInwJAowCCA6RIwqZAgkPNgVpWndjdyohACH5BAAKAAkALAAAAAAQABAAAAV5ICACAimc5KieLEuUKvm2xAKLqDCfC2GaO9eL0LABWTiBYmA06W6kHgvCqEJiAIJiu3gcvgUsscHUERm+kaCxyxa+zRPk0SgJEgfIvbAdIAQLCAYlCj4DBw0IBQsMCjIqBAcPAooCBg9pKgsJLwUFOhCZKyQDA3YqIQAh+QQACgAKACwAAAAAEAAQAAAFdSAgAgIpnOSonmxbqiThCrJKEHFbo8JxDDOZYFFb+A41E4H4OhkOipXwBElYITDAckFEOBgMQ3arkMkUBdxIUGZpEb7kaQBRlASPg0FQQHAbEEMGDSVEAA1QBhAED1E0NgwFAooCDWljaQIQCE5qMHcNhCkjIQAh+QQACgALACwAAAAAEAAQAAAFeSAgAgIpnOSoLgxxvqgKLEcCC65KEAByKK8cSpA4DAiHQ/DkKhGKh4ZCtCyZGo6F6iYYPAqFgYy02xkSaLEMV34tELyRYNEsCQyHlvWkGCzsPgMCEAY7Cg04Uk48LAsDhRA8MVQPEF0GAgqYYwSRlycNcWskCkApIyEAOwAAAAAAAAAAAA==);background-position:right 5px center;background-repeat:no-repeat;background-color:#fff}div.form-error{background-color:#f2dede;padding:15px;margin-bottom:20px;border:#b94a48 1px solid;border-radius:4px}div.form-error strong{font-weight:700;display:block;margin:0;padding:0 0 10px}div.form-error strong,div.form-error ul li{line-height:140%;color:#b94a48;font-family:helvetica neue,Helvetica,Arial,sans-serif;font-size:14px}div.form-error ul,div.form-error ul li{background:0 0}.grecaptcha-badge{margin:0}.g-recaptcha-container{display:flex;flex-direction:column;justify-content:center}.g-recaptcha-container .filler{display:none}.g-recaptcha.btn{height:38px;margin-top:11px}.generic-success,.generic-error,.captcha-error{margin-bottom:10px}form .should-fade{transition:all .2s ease-in-out;opacity:1}form.success .should-fade{opacity:.2}form #generic-success{transition:all .2s ease-in-out;position:absolute;left:-.25rem;top:-1rem;width:calc(100% + .5rem);height:calc(100% + 2rem);border-radius:5px;z-index:100;display:flex;opacity:1;visibility:visible;flex-direction:column;align-items:center;justify-content:center;font-weight:700}form #generic-success.hidden{opacity:0;visibility:hidden}@media screen and (min-width:768px){.grecaptcha-badge{margin-bottom:0}.g-recaptcha-container{flex-direction:row;justify-content:space-between}.g-recaptcha-container .filler,.g-recaptcha-filler{display:block;width:256px}}.portfolio-item{height:100%;min-height:180px;display:flex;justify-content:center;align-items:center;position:relative}.portfolio-item.has-background .portfolio-image,.portfolio-item.has-background .portfolio-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.portfolio-item .badge-container .badge{background-color:rgba(52,58,64,.5)}.portfolio-item .description{background-color:rgba(52,58,64,.6);transition:all .2s ease-in-out}.portfolio-item .description-container{bottom:8px;left:8px;width:calc(100% - 16px)}.portfolio-item .description .title{font-weight:700}.portfolio-item *{cursor:pointer}.portfolio-item .hover-overlay{bottom:8px;left:16px;width:calc(100% - 16px);height:32px;border-radius:4;transition:all .2s ease-in-out}.portfolio-item:hover .description{background:transparent}.portfolio-item:hover .badge-container .badge{background-color:transparent}.portfolio-item:hover .hover-overlay{bottom:0;left:0;width:100%;height:100%;border-radius:0;background-color:rgba(52,58,64,.6)}.pricing-plan{display:flex}.pricing-plan .card{flex:1 0 auto;max-width:100%;overflow:hidden}.pricing-plan .card-header{height:125px;display:flex;flex-direction:column;justify-content:center}@media(min-width:768px){.pricing-plan-highlight{margin:-20px -10px 0}.pricing-plan-highlight .card-header{height:145px}}@media(max-width:991.98px){.pricing-plan-highlight{order:-1}}.pricing-plan .card-body{display:flex;flex-direction:column;flex:1 0 auto}.pricing-plan .card-body .features{display:flex;flex-direction:column;flex:1 0 auto}.pricing-plan .card-body p{margin-bottom:0}.pricing-plan .card-body p i{color:#28a745;margin-right:10px}.submit-price-display{margin-left:5px}body.modal-open{padding-right:15px}.modal{position:fixed;top:0;left:0;height:100vh;width:100vw;background-color:rgba(0,0,0,.8);z-index:10000;display:flex;justify-content:center;align-items:center;transition:all .2s ease-in-out}.modal-header button:focus{outline:none}.modal-dialog{box-shadow:2px 2px 6px rgba(52,58,64,.4);width:400px;transition:all .2s ease-in-out}.modal-dialog.md{width:600px}.modal-dialog.lg{width:800px}.modal .modal-background{position:relative;min-height:180px}.modal .modal-background .modal-asset-image,.modal .modal-background .modal-asset-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.modal .modal-background .icon-container{font-size:64px}.modal .modal-background .icon-container .fa-stack-1x,.modal .modal-background .icon-container .fa-stack-2x{position:relative}.modal .badge-container{color:#f8f9fa;margin-bottom:1rem}.modal:not(.show){opacity:0;visibility:hidden}.modal:not(.show).modal-dialog{transform:translateY(-64px)}.search-results-container{position:absolute;right:0;top:calc(100% + 11px);width:400px;background-color:#fff;box-shadow:1px 1px 10px rgba(0,0,0,.2);border-radius:0 0 5px 5px;z-index:5000;display:none}.search-results-container.show{display:block}.search-results-container .result,.search-results-full-container .result{cursor:pointer;text-decoration:inherit}.search-results-container .result p,.search-results-full-container .result p{text-decoration:none!important}.search-results-container .result div:hover,.search-results-full-container .result div:hover{background-color:rgba(0,100,0,.2)}.search-results-container .result div:hover h5,.search-results-full-container .result div:hover h5{text-decoration:underline!important}.toc{margin-top:.5rem}.toc ul{list-style:none;padding-left:1rem;margin-bottom:.5rem}:root{--header-height: 0px}.nav-link{color:rgba(0,0,0,.5)}.nav-link:hover,.nav-link:focus{color:rgba(0,0,0,.7)}.nav-link.disabled{color:rgba(0,0,0,.3)}.fragment.bg-primary a:not(.nav-link):not(.ignore-color-change),.fragment.bg-primary .search-results-container .result h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active),.search-results-container .result .fragment.bg-primary h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active),.fragment.bg-primary .search-results-full-container .result h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active),.search-results-full-container .result .fragment.bg-primary h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active),.fragment .bg-primary a:not(.nav-link):not(.ignore-color-change),.fragment .bg-primary .search-results-container .result h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active),.search-results-container .result .fragment .bg-primary h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active),.fragment .bg-primary .search-results-full-container .result h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active),.search-results-full-container .result .fragment .bg-primary h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active){color:#f8f9fa}.fragment.bg-primary a:not(.nav-link):not(.ignore-color-change):hover,.fragment.bg-primary .search-results-container .result h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-container .result .fragment.bg-primary h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active),.fragment.bg-primary .search-results-full-container .result h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-full-container .result .fragment.bg-primary h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active),.fragment .bg-primary a:not(.nav-link):not(.ignore-color-change):hover,.fragment .bg-primary .search-results-container .result h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-container .result .fragment .bg-primary h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active),.fragment .bg-primary .search-results-full-container .result h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-full-container .result .fragment .bg-primary h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active){color:#cbd3da}.fragment.bg-dark .nav-link,.fragment .bg-dark .nav-link{color:rgba(255,255,255,.5)}.fragment.bg-dark .nav-link:hover,.fragment.bg-dark .nav-link:focus,.fragment .bg-dark .nav-link:hover,.fragment .bg-dark .nav-link:focus{color:rgba(255,255,255,.75)}.fragment.bg-dark .nav-link.disabled,.fragment .bg-dark .nav-link.disabled{color:rgba(255,255,255,.25)}.fragment.bg-dark a:not(.ignore-color-change):hover,.fragment.bg-dark .search-results-container .result h5:not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-container .result .fragment.bg-dark h5:not(.ignore-color-change):hover:not(:hover):not(:active),.fragment.bg-dark .search-results-full-container .result h5:not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-full-container .result .fragment.bg-dark h5:not(.ignore-color-change):hover:not(:hover):not(:active),.fragment .bg-dark a:not(.ignore-color-change):hover,.fragment .bg-dark .search-results-container .result h5:not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-container .result .fragment .bg-dark h5:not(.ignore-color-change):hover:not(:hover):not(:active),.fragment .bg-dark .search-results-full-container .result h5:not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-full-container .result .fragment .bg-dark h5:not(.ignore-color-change):hover:not(:hover):not(:active){color:#cbd3da}.jumbotron{border-radius:0!important}.overlay{position:relative;z-index:100}.scroll-to-top{position:fixed;right:32px;bottom:32px;width:32px;height:32px;border-radius:4px;display:flex;justify-content:center;align-items:center;color:#fff;font-size:16px;cursor:pointer;transition:all .2s ease;z-index:999}.scroll-to-top.has-font-icon{font-size:24px}.scroll-to-top.d-none{display:flex!important;visibility:hidden;opacity:0}[data-portal]{padding-bottom:1px;box-sizing:border-box}article .content img{max-width:100%}.content-sidebar{word-break:break-word}.content-sidebar-body{overflow-y:auto;max-height:calc(100vh - 2rem - var(--header-height))}.items-column{display:grid;grid-auto-rows:1fr auto 1fr}@media(max-width:767.98px){.items-column{grid-auto-rows:auto}}.items-column a,.items-column .search-results-container .result h5:not(:hover):not(:active),.search-results-container .result .items-column h5:not(:hover):not(:active),.items-column .search-results-full-container .result h5:not(:hover):not(:active),.search-results-full-container .result .items-column h5:not(:hover):not(:active){display:contents}pre{padding:.75rem}section .bg-dark code,section .bg-dark pre{background-color:#f8f9fa;color:#343a40}section .bg-dark p code{padding:3px 4px 2px}section .bg-secondary code,section .bg-secondary pre{background-color:#f8f9fa;color:#343a40}section .bg-secondary p code{padding:3px 4px 2px}section .bg-#fff code,section .bg-#fff pre{background-color:#343a40;color:#f8f9fa}section .bg-#fff p code{padding:3px 4px 2px}section .bg-primary code,section .bg-primary pre{background-color:#343a40;color:#f8f9fa}section .bg-primary p code{padding:3px 4px 2px}section .bg-success code,section .bg-success pre{background-color:#343a40;color:#f8f9fa}section .bg-success p code{padding:3px 4px 2px}section .bg-info code,section .bg-info pre{background-color:#343a40;color:#f8f9fa}section .bg-info p code{padding:3px 4px 2px}section .bg-warning code,section .bg-warning pre{background-color:#343a40;color:#f8f9fa}section .bg-warning p code{padding:3px 4px 2px}section .bg-danger code,section .bg-danger pre{background-color:#343a40;color:#f8f9fa}section .bg-danger p code{padding:3px 4px 2px}section .bg-light code,section .bg-light pre{background-color:#343a40;color:#f8f9fa}section .bg-light p code{padding:3px 4px 2px}.faq .collapse,.list .collapse{display:block;height:auto;max-height:0;overflow:hidden;transition:all .6s ease-out}.faq .collapse.show,.list .collapse.show{max-height:1000px;transition:all .6s ease-in}.badge-container{top:8px;left:8px;display:flex;width:calc(100% - 16px)}.badge-container .badge{margin-right:8px;transition:all .2s ease-in-out}.badge-container .badge [class*=fa-]{margin-right:2px}.btn-group-toggle label.btn{position:relative}.btn-group-toggle label.btn input{position:absolute;width:100%;height:100%;top:0;left:0;opacity:0}.currency-change{display:flex;align-items:center;justify-content:space-between;padding-left:1rem;padding-right:1rem}.currency-change,.currency-menu{min-width:4.5rem;width:4.5rem}#TableOfContents a.active,#TableOfContents .search-results-container .result h5.active:not(:hover):not(:active),.search-results-container .result #TableOfContents h5.active:not(:hover):not(:active),#TableOfContents .search-results-full-container .result h5.active:not(:hover):not(:active),.search-results-full-container .result #TableOfContents h5.active:not(:hover):not(:active),.active-page{font-weight:700}.btn-group-toggle .btn input{pointer-events:none}.repositories .repository{display:flex;justify-content:stretch;align-items:stretch}.repositories .repository .card{flex:1} \ No newline at end of file diff --git a/resources/_gen/assets/scss/styles/index.scss_02bf14281ac065540fcc7ecc15ca70a4.json b/resources/_gen/assets/scss/styles/index.scss_02bf14281ac065540fcc7ecc15ca70a4.json deleted file mode 100644 index c7520ca2..00000000 --- a/resources/_gen/assets/scss/styles/index.scss_02bf14281ac065540fcc7ecc15ca70a4.json +++ /dev/null @@ -1 +0,0 @@ -{"Target":"style.min.a7b280dd44776d1e57d8b61c1697e3b44d277b41393d4c3c75a43838f52c92ef.css","MediaType":"text/css","Data":{"Integrity":"sha256-p7KA3UR3bR5X2LYcFpfjtE0ne0E5PUw8daQ4OPUsku8="}} \ No newline at end of file diff --git a/resources/_gen/assets/scss/styles/index.scss_a4e369375f17bb89f2019364cbe7a830.content b/resources/_gen/assets/scss/styles/index.scss_a4e369375f17bb89f2019364cbe7a830.content deleted file mode 100644 index 56063695..00000000 --- a/resources/_gen/assets/scss/styles/index.scss_a4e369375f17bb89f2019364cbe7a830.content +++ /dev/null @@ -1,8 +0,0 @@ -/*!* Font Awesome Free 5.6.3 by @fontawesome - https://fontawesome.com -* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)*/.fa,.fas,.far,.fal,.fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:solid .08em #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fas.fa-pull-left,.far.fa-pull-left,.fal.fa-pull-left,.fab.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fas.fa-pull-right,.far.fa-pull-right,.fal.fa-pull-right,.fab.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform:scale(1,-1)}.fa-flip-horizontal.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform:scale(-1,-1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hanukiah:before{content:"\f6e6"}.fa-hashtag:before{content:"\f292"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-icicles:before{content:"\f7ad"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}/*!* Font Awesome Free 5.6.3 by @fontawesome - https://fontawesome.com -* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)*/@font-face{font-family:'font awesome 5 free';font-style:normal;font-weight:400;src:url(fonts/fa-regular-400.eot);src:url(fonts/fa-regular-400.eot?#iefix)format("embedded-opentype"),url(fonts/fa-regular-400.woff2)format("woff2"),url(fonts/fa-regular-400.woff)format("woff"),url(fonts/fa-regular-400.ttf)format("truetype"),url(fonts/fa-regular-400.svg#fontawesome)format("svg")}.far{font-family:'font awesome 5 free';font-weight:400}/*!* Font Awesome Free 5.6.3 by @fontawesome - https://fontawesome.com -* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)*/@font-face{font-family:'font awesome 5 free';font-style:normal;font-weight:900;src:url(fonts/fa-solid-900.eot);src:url(fonts/fa-solid-900.eot?#iefix)format("embedded-opentype"),url(fonts/fa-solid-900.woff2)format("woff2"),url(fonts/fa-solid-900.woff)format("woff"),url(fonts/fa-solid-900.ttf)format("truetype"),url(fonts/fa-solid-900.svg#fontawesome)format("svg")}.fa,.fas{font-family:'font awesome 5 free';font-weight:900}/*!* Font Awesome Free 5.6.3 by @fontawesome - https://fontawesome.com -* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)*/@font-face{font-family:'font awesome 5 brands';font-style:normal;font-weight:400;src:url(fonts/fa-brands-400.eot);src:url(fonts/fa-brands-400.eot?#iefix)format("embedded-opentype"),url(fonts/fa-brands-400.woff2)format("woff2"),url(fonts/fa-brands-400.woff)format("woff"),url(fonts/fa-brands-400.ttf)format("truetype"),url(fonts/fa-brands-400.svg#fontawesome)format("svg")}.fab{font-family:'font awesome 5 brands'}/*!* Bootstrap v4.4.1 (https://getbootstrap.com/) -* Copyright 2011-2019 The Bootstrap Authors -* Copyright 2011-2019 Twitter, Inc. -* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)*/:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #343a40;--primary: #006400;--secondary: #ff8c00;--success: #008f54;--info: #00c9dc;--warning: #fdf314;--danger: #dc1200;--light: #f8f9fa;--dark: #343a40;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a,.search-results-container .result h5:not(:hover):not(:active),.search-results-full-container .result h5:not(:hover):not(:active){color:#006400;text-decoration:none;background-color:transparent}a:hover,.search-results-container .result h5:hover:not(:hover):not(:active),.search-results-full-container .result h5:hover:not(:hover):not(:active){color:#001800;text-decoration:underline}a:not([href]),.search-results-container .result h5:not([href]):not(:hover):not(:active),.search-results-full-container .result h5:not([href]):not(:hover):not(:active){color:inherit;text-decoration:none}a:not([href]):hover,.search-results-container .result h5:not([href]):hover:not(:hover):not(:active),.search-results-full-container .result h5:not([href]):hover:not(:hover):not(:active){color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,liberation mono,courier new,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{padding:0;border-style:none}input[type=radio],input[type=checkbox]{box-sizing:border-box;padding:0}input[type=date],input[type=time],input[type=datetime-local],input[type=month]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:2.5rem}h2,.h2{font-size:2rem}h3,.h3{font-size:1.75rem}h4,.h4{font-size:1.5rem}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:5px}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code,.search-results-container .result h5:not(:hover):not(:active)>code,.search-results-full-container .result h5:not(:hover):not(:active)>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:576px){.container{max-width:540px}}@media(min-width:768px){.container{max-width:720px}}@media(min-width:992px){.container{max-width:960px}}@media(min-width:1200px){.container{max-width:1140px}}.container-fluid,.container-xl,.container-lg,.container-md,.container-sm{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:576px){.container-sm,.container{max-width:540px}}@media(min-width:768px){.container-md,.container-sm,.container{max-width:720px}}@media(min-width:992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width:1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col-xl,.col-xl-auto,.col-xl-12,.col-xl-11,.col-xl-10,.col-xl-9,.col-xl-8,.col-xl-7,.col-xl-6,.col-xl-5,.col-xl-4,.col-xl-3,.col-xl-2,.col-xl-1,.col-lg,.col-lg-auto,.col-lg-12,.col-lg-11,.col-lg-10,.col-lg-9,.col-lg-8,.col-lg-7,.col-lg-6,.col-lg-5,.col-lg-4,.col-lg-3,.col-lg-2,.col-lg-1,.col-md,.col-md-auto,.col-md-12,.col-md-11,.col-md-10,.col-md-9,.col-md-8,.col-md-7,.col-md-6,.col-md-5,.col-md-4,.col-md-3,.col-md-2,.col-md-1,.col-sm,.col-sm-auto,.col-sm-12,.col-sm-11,.col-sm-10,.col-sm-9,.col-sm-8,.col-sm-7,.col-sm-6,.col-sm-5,.col-sm-4,.col-sm-3,.col-sm-2,.col-sm-1,.col,.col-auto,.col-12,.col-11,.col-10,.col-9,.col-8,.col-7,.col-6,.col-5,.col-4,.col-3,.col-2,.col-1{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.33333333%;max-width:33.33333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.66666667%;max-width:16.66666667%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}@media(min-width:576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.33333333%;max-width:33.33333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.66666667%;max-width:16.66666667%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}}@media(min-width:768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.33333333%;max-width:33.33333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.66666667%;max-width:16.66666667%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}}@media(min-width:992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.33333333%;max-width:33.33333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.66666667%;max-width:16.66666667%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}}@media(min-width:1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.33333333%;max-width:33.33333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.66666667%;max-width:16.66666667%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table th,.table td{padding:.75rem;vertical-align:top;border-top:1px solid #e9ecef}.table thead th{vertical-align:bottom;border-bottom:2px solid #e9ecef}.table tbody+tbody{border-top:2px solid #e9ecef}.table-sm th,.table-sm td{padding:.3rem}.table-bordered{border:1px solid #e9ecef}.table-bordered th,.table-bordered td{border:1px solid #e9ecef}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#b8d4b8}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#7aae7a}.table-hover .table-primary:hover{background-color:#a8caa8}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#a8caa8}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#ffdfb8}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#ffc37a}.table-hover .table-secondary:hover{background-color:#ffd49f}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#ffd49f}.table-success,.table-success>th,.table-success>td{background-color:#b8e0cf}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#7ac5a6}.table-hover .table-success:hover{background-color:#a6d8c3}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#a6d8c3}.table-info,.table-info>th,.table-info>td{background-color:#b8f0f5}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#7ae3ed}.table-hover .table-info:hover{background-color:#a2ebf2}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#a2ebf2}.table-warning,.table-warning>th,.table-warning>td{background-color:#fefcbd}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#fef985}.table-hover .table-warning:hover{background-color:#fefba4}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#fefba4}.table-danger,.table-danger>th,.table-danger>td{background-color:#f5bdb8}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#ed847a}.table-hover .table-danger:hover{background-color:#f2a8a2}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f2a8a2}.table-light,.table-light>th,.table-light>td{background-color:#fdfdfe}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>th,.table-dark>td{background-color:#c6c8ca}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#e9ecef}.table-dark{color:#fff;background-color:#343a40}.table-dark th,.table-dark td,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media(max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media(max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media(max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media(max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#00e400;outline:0;box-shadow:0 0 0 .2rem rgba(0,100,0,.25)}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input[disabled]~.form-check-label,.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#008f54}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(0,143,84,.9);border-radius:.25rem}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#008f54;padding-right:calc(1.5em + .75rem);background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA4IDgiPjxwYXRoIGZpbGw9IiMwMDhmNTQiIGQ9Ik0yLjMgNi43My42IDQuNTNjLS40LTEuMDQuNDYtMS40IDEuMS0uOGwxLjEgMS40IDMuNC0zLjhjLjYtLjYzIDEuNi0uMjcgMS4yLjdsLTQgNC42Yy0uNDMuNS0uOC40LTEuMS4xeiIvPjwvc3ZnPg==);background-repeat:no-repeat;background-position:right calc(.375em + .1875rem)center;background-size:calc(.75em + .375rem)calc(.75em + .375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#008f54;box-shadow:0 0 0 .2rem rgba(0,143,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem)right calc(.375em + .1875rem)}.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#008f54;padding-right:calc(.75em + 2.3125rem);background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjUiIHZpZXdCb3g9IjAgMCA0IDUiPjxwYXRoIGZpbGw9IiMzNDNhNDAiIGQ9Ik0yIDAgMCAyaDR6bTAgNUwwIDNoNHoiLz48L3N2Zz4=)no-repeat right .75rem center/8px 10px,url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA4IDgiPjxwYXRoIGZpbGw9IiMwMDhmNTQiIGQ9Ik0yLjMgNi43My42IDQuNTNjLS40LTEuMDQuNDYtMS40IDEuMS0uOGwxLjEgMS40IDMuNC0zLjhjLjYtLjYzIDEuNi0uMjcgMS4yLjdsLTQgNC42Yy0uNDMuNS0uOC40LTEuMS4xeiIvPjwvc3ZnPg==)#fff no-repeat center right 1.75rem/calc(.75em + .375rem)calc(.75em + .375rem)}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#008f54;box-shadow:0 0 0 .2rem rgba(0,143,84,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#008f54}.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip,.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip{display:block}.was-validated .custom-control-input:valid~.custom-control-label,.custom-control-input.is-valid~.custom-control-label{color:#008f54}.was-validated .custom-control-input:valid~.custom-control-label::before,.custom-control-input.is-valid~.custom-control-label::before{border-color:#008f54}.was-validated .custom-control-input:valid:checked~.custom-control-label::before,.custom-control-input.is-valid:checked~.custom-control-label::before{border-color:#00c272;background-color:#00c272}.was-validated .custom-control-input:valid:focus~.custom-control-label::before,.custom-control-input.is-valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,143,84,.25)}.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before{border-color:#008f54}.was-validated .custom-file-input:valid~.custom-file-label,.custom-file-input.is-valid~.custom-file-label{border-color:#008f54}.was-validated .custom-file-input:valid:focus~.custom-file-label,.custom-file-input.is-valid:focus~.custom-file-label{border-color:#008f54;box-shadow:0 0 0 .2rem rgba(0,143,84,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc1200}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,18,0,.9);border-radius:.25rem}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc1200;padding-right:calc(1.5em + .75rem);background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGMxMjAwIiB2aWV3Qm94PSIwIDAgMTIgMTIiPjxjaXJjbGUgY3g9IjYiIGN5PSI2IiByPSI0LjUiLz48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBkPSJNNS44IDMuNmguNEw2IDYuNXoiLz48Y2lyY2xlIGN4PSI2IiBjeT0iOC4yIiByPSIuNiIgZmlsbD0iI2RjMTIwMCIgc3Ryb2tlPSJub25lIi8+PC9zdmc+);background-repeat:no-repeat;background-position:right calc(.375em + .1875rem)center;background-size:calc(.75em + .375rem)calc(.75em + .375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc1200;box-shadow:0 0 0 .2rem rgba(220,18,0,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem)right calc(.375em + .1875rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#dc1200;padding-right:calc(.75em + 2.3125rem);background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjUiIHZpZXdCb3g9IjAgMCA0IDUiPjxwYXRoIGZpbGw9IiMzNDNhNDAiIGQ9Ik0yIDAgMCAyaDR6bTAgNUwwIDNoNHoiLz48L3N2Zz4=)no-repeat right .75rem center/8px 10px,url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZGMxMjAwIiB2aWV3Qm94PSIwIDAgMTIgMTIiPjxjaXJjbGUgY3g9IjYiIGN5PSI2IiByPSI0LjUiLz48cGF0aCBzdHJva2UtbGluZWpvaW49InJvdW5kIiBkPSJNNS44IDMuNmguNEw2IDYuNXoiLz48Y2lyY2xlIGN4PSI2IiBjeT0iOC4yIiByPSIuNiIgZmlsbD0iI2RjMTIwMCIgc3Ryb2tlPSJub25lIi8+PC9zdmc+)#fff no-repeat center right 1.75rem/calc(.75em + .375rem)calc(.75em + .375rem)}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#dc1200;box-shadow:0 0 0 .2rem rgba(220,18,0,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#dc1200}.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip,.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip{display:block}.was-validated .custom-control-input:invalid~.custom-control-label,.custom-control-input.is-invalid~.custom-control-label{color:#dc1200}.was-validated .custom-control-input:invalid~.custom-control-label::before,.custom-control-input.is-invalid~.custom-control-label::before{border-color:#dc1200}.was-validated .custom-control-input:invalid:checked~.custom-control-label::before,.custom-control-input.is-invalid:checked~.custom-control-label::before{border-color:#ff2410;background-color:#ff2410}.was-validated .custom-control-input:invalid:focus~.custom-control-label::before,.custom-control-input.is-invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,18,0,.25)}.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc1200}.was-validated .custom-file-input:invalid~.custom-file-label,.custom-file-input.is-invalid~.custom-file-label{border-color:#dc1200}.was-validated .custom-file-input:invalid:focus~.custom-file-label,.custom-file-input.is-invalid:focus~.custom-file-label{border-color:#dc1200;box-shadow:0 0 0 .2rem rgba(220,18,0,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media(min-width:576px){.form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;cursor:pointer;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn:focus,.btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,100,0,.25)}.btn.disabled,.btn:disabled{opacity:.65}a.btn.disabled,.search-results-container .result h5.btn.disabled:not(:hover):not(:active),.search-results-full-container .result h5.btn.disabled:not(:hover):not(:active),fieldset:disabled a.btn,fieldset:disabled .search-results-container .result h5.btn:not(:hover):not(:active),.search-results-container .result fieldset:disabled h5.btn:not(:hover):not(:active),fieldset:disabled .search-results-full-container .result h5.btn:not(:hover):not(:active),.search-results-full-container .result fieldset:disabled h5.btn:not(:hover):not(:active){pointer-events:none}.btn-primary{color:#fff;background-color:#006400;border-color:#006400}.btn-primary:hover{color:#fff;background-color:#003e00;border-color:#003100}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#003e00;border-color:#003100;box-shadow:0 0 0 .2rem rgba(38,123,38,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#006400;border-color:#006400}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#003100;border-color:#002400}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,123,38,.5)}.btn-secondary{color:#212529;background-color:#ff8c00;border-color:#ff8c00}.btn-secondary:hover{color:#fff;background-color:#d97700;border-color:#cc7000}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#d97700;border-color:#cc7000;box-shadow:0 0 0 .2rem rgba(222,125,6,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#212529;background-color:#ff8c00;border-color:#ff8c00}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#cc7000;border-color:#bf6900}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,125,6,.5)}.btn-success{color:#fff;background-color:#008f54;border-color:#008f54}.btn-success:hover{color:#fff;background-color:#00693e;border-color:#005c36}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#00693e;border-color:#005c36;box-shadow:0 0 0 .2rem rgba(38,160,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#008f54;border-color:#008f54}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#005c36;border-color:#004f2f}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,160,110,.5)}.btn-info{color:#fff;background-color:#00c9dc;border-color:#00c9dc}.btn-info:hover{color:#fff;background-color:#00a6b6;border-color:#009aa9}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#00a6b6;border-color:#009aa9;box-shadow:0 0 0 .2rem rgba(38,209,225,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#00c9dc;border-color:#00c9dc}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#009aa9;border-color:#008f9c}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(38,209,225,.5)}.btn-warning{color:#212529;background-color:#fdf314;border-color:#fdf314}.btn-warning:hover{color:#212529;background-color:#e9df02;border-color:#dcd302}.btn-warning:focus,.btn-warning.focus{color:#212529;background-color:#e9df02;border-color:#dcd302;box-shadow:0 0 0 .2rem rgba(220,212,23,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#fdf314;border-color:#fdf314}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#dcd302;border-color:#cfc702}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,212,23,.5)}.btn-danger{color:#fff;background-color:#dc1200;border-color:#dc1200}.btn-danger:hover{color:#fff;background-color:#b60f00;border-color:#a90e00}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#b60f00;border-color:#a90e00;box-shadow:0 0 0 .2rem rgba(225,54,38,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc1200;border-color:#dc1200}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#a90e00;border-color:#9c0d00}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,54,38,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light:focus,.btn-light.focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#23272b;border-color:#1d2124;box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(82,88,93,.5)}.btn-outline-primary{color:#006400;border-color:#006400}.btn-outline-primary:hover{color:#fff;background-color:#006400;border-color:#006400}.btn-outline-primary:focus,.btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(0,100,0,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#006400;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#006400;border-color:#006400}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,100,0,.5)}.btn-outline-secondary{color:#ff8c00;border-color:#ff8c00}.btn-outline-secondary:hover{color:#212529;background-color:#ff8c00;border-color:#ff8c00}.btn-outline-secondary:focus,.btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(255,140,0,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#ff8c00;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle{color:#212529;background-color:#ff8c00;border-color:#ff8c00}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,140,0,.5)}.btn-outline-success{color:#008f54;border-color:#008f54}.btn-outline-success:hover{color:#fff;background-color:#008f54;border-color:#008f54}.btn-outline-success:focus,.btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(0,143,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#008f54;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#008f54;border-color:#008f54}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,143,84,.5)}.btn-outline-info{color:#00c9dc;border-color:#00c9dc}.btn-outline-info:hover{color:#fff;background-color:#00c9dc;border-color:#00c9dc}.btn-outline-info:focus,.btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(0,201,220,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#00c9dc;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#00c9dc;border-color:#00c9dc}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,201,220,.5)}.btn-outline-warning{color:#fdf314;border-color:#fdf314}.btn-outline-warning:hover{color:#212529;background-color:#fdf314;border-color:#fdf314}.btn-outline-warning:focus,.btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(253,243,20,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#fdf314;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#fdf314;border-color:#fdf314}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(253,243,20,.5)}.btn-outline-danger{color:#dc1200;border-color:#dc1200}.btn-outline-danger:hover{color:#fff;background-color:#dc1200;border-color:#dc1200}.btn-outline-danger:focus,.btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,18,0,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc1200;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc1200;border-color:#dc1200}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,18,0,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:focus,.btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:focus,.btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#006400;text-decoration:none}.btn-link:hover{color:#001800;text-decoration:underline}.btn-link:focus,.btn-link.focus{text-decoration:underline;box-shadow:none}.btn-link:disabled,.btn-link.disabled{color:#6c757d;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion:reduce){.collapsing{transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media(min-width:576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media(min-width:768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media(min-width:992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media(min-width:1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=top],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#006400}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;flex:1 1 0%;min-width:0;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus~.custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:last-child),.input-group>.custom-select:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-prepend,.input-group-append{display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=radio],.input-group-text input[type=checkbox]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + .5rem + 2px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#006400;background-color:#006400}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(0,100,0,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#00e400}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#18ff18;border-color:#18ff18}.custom-control-input[disabled]~.custom-control-label,.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input[disabled]~.custom-control-label::before,.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA4IDgiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik02LjU2NC43NWwtMy41OSAzLjYxMi0xLjUzOC0xLjU1TDAgNC4yNmwyLjk3NCAyLjk5TDggMi4xOTN6Ii8+PC9zdmc+)}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#006400;background-color:#006400}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiIHZpZXdCb3g9IjAgMCA0IDQiPjxwYXRoIHN0cm9rZT0iI2ZmZiIgZD0iTTAgMmg0Ii8+PC9zdmc+)}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,100,0,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,100,0,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgdmlld0JveD0iLTQgLTQgOCA4Ij48Y2lyY2xlIHI9IjMiIGZpbGw9IiNmZmYiLz48L3N2Zz4=)}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,100,0,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;transition:transform .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,100,0,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjUiIHZpZXdCb3g9IjAgMCA0IDUiPjxwYXRoIGZpbGw9IiMzNDNhNDAiIGQ9Ik0yIDAgMCAyaDR6bTAgNUwwIDNoNHoiLz48L3N2Zz4=)no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;appearance:none}.custom-select:focus{border-color:#00e400;outline:0;box-shadow:0 0 0 .2rem rgba(0,100,0,.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#00e400;box-shadow:0 0 0 .2rem rgba(0,100,0,.25)}.custom-file-input[disabled]~.custom-file-label,.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,100,0,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,100,0,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,100,0,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#006400;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion:reduce){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#18ff18}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#006400;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion:reduce){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#18ff18}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#006400;border:0;border-radius:1rem;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;appearance:none}@media(prefers-reduced-motion:reduce){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#18ff18}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#006400}.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-sm,.navbar .container-md,.navbar .container-lg,.navbar .container-xl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat 50%;background-size:100% 100%}@media(max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media(min-width:576px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media(max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media(min-width:768px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media(max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media(min-width:992px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media(max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media(min-width:1200px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDMwIDMwIj48cGF0aCBzdHJva2U9InJnYmEoMCwwLDAsMC41KSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTQgN2gyMk00IDE1aDIyTTQgMjNoMjIiLz48L3N2Zz4=)}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a,.navbar-light .navbar-text .search-results-container .result h5:not(:hover):not(:active),.search-results-container .result .navbar-light .navbar-text h5:not(:hover):not(:active),.navbar-light .navbar-text .search-results-full-container .result h5:not(:hover):not(:active),.search-results-full-container .result .navbar-light .navbar-text h5:not(:hover):not(:active){color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text .search-results-container .result h5:hover:not(:hover):not(:active),.search-results-container .result .navbar-light .navbar-text h5:hover:not(:hover):not(:active),.navbar-light .navbar-text .search-results-full-container .result h5:hover:not(:hover):not(:active),.search-results-full-container .result .navbar-light .navbar-text h5:hover:not(:hover):not(:active),.navbar-light .navbar-text a:focus,.navbar-light .navbar-text .search-results-container .result h5:focus:not(:hover):not(:active),.search-results-container .result .navbar-light .navbar-text h5:focus:not(:hover):not(:active),.navbar-light .navbar-text .search-results-full-container .result h5:focus:not(:hover):not(:active),.search-results-full-container .result .navbar-light .navbar-text h5:focus:not(:hover):not(:active){color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSIzMCIgdmlld0JveD0iMCAwIDMwIDMwIj48cGF0aCBzdHJva2U9InJnYmEoMjU1LDI1NSwyNTUsMC41KSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTQgN2gyMk00IDE1aDIyTTQgMjNoMjIiLz48L3N2Zz4=)}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text .search-results-container .result h5:not(:hover):not(:active),.search-results-container .result .navbar-dark .navbar-text h5:not(:hover):not(:active),.navbar-dark .navbar-text .search-results-full-container .result h5:not(:hover):not(:active),.search-results-full-container .result .navbar-dark .navbar-text h5:not(:hover):not(:active){color:#fff}.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text .search-results-container .result h5:hover:not(:hover):not(:active),.search-results-container .result .navbar-dark .navbar-text h5:hover:not(:hover):not(:active),.navbar-dark .navbar-text .search-results-full-container .result h5:hover:not(:hover):not(:active),.search-results-full-container .result .navbar-dark .navbar-text h5:hover:not(:hover):not(:active),.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text .search-results-container .result h5:focus:not(:hover):not(:active),.search-results-container .result .navbar-dark .navbar-text h5:focus:not(:hover):not(:active),.navbar-dark .navbar-text .search-results-full-container .result h5:focus:not(:hover):not(:active),.search-results-full-container .result .navbar-dark .navbar-text h5:focus:not(:hover):not(:active){color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px)calc(.25rem - 1px)0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px)calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img,.card-img-top,.card-img-bottom{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media(min-width:576px){.card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media(min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media(min-width:576px){.card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#006400;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#001800;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(0,100,0,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#006400;border-color:#006400}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion:reduce){.badge{transition:none}}a.badge:hover,.search-results-container .result h5.badge:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge:hover:not(:hover):not(:active),a.badge:focus,.search-results-container .result h5.badge:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge:focus:not(:hover):not(:active){text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#006400}a.badge-primary:hover,.search-results-container .result h5.badge-primary:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-primary:hover:not(:hover):not(:active),a.badge-primary:focus,.search-results-container .result h5.badge-primary:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-primary:focus:not(:hover):not(:active){color:#fff;background-color:#003100}a.badge-primary:focus,.search-results-container .result h5.badge-primary:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-primary:focus:not(:hover):not(:active),a.badge-primary.focus,.search-results-container .result h5.badge-primary.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-primary.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(0,100,0,.5)}.badge-secondary{color:#212529;background-color:#ff8c00}a.badge-secondary:hover,.search-results-container .result h5.badge-secondary:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-secondary:hover:not(:hover):not(:active),a.badge-secondary:focus,.search-results-container .result h5.badge-secondary:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-secondary:focus:not(:hover):not(:active){color:#212529;background-color:#cc7000}a.badge-secondary:focus,.search-results-container .result h5.badge-secondary:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-secondary:focus:not(:hover):not(:active),a.badge-secondary.focus,.search-results-container .result h5.badge-secondary.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-secondary.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(255,140,0,.5)}.badge-success{color:#fff;background-color:#008f54}a.badge-success:hover,.search-results-container .result h5.badge-success:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-success:hover:not(:hover):not(:active),a.badge-success:focus,.search-results-container .result h5.badge-success:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-success:focus:not(:hover):not(:active){color:#fff;background-color:#005c36}a.badge-success:focus,.search-results-container .result h5.badge-success:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-success:focus:not(:hover):not(:active),a.badge-success.focus,.search-results-container .result h5.badge-success.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-success.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(0,143,84,.5)}.badge-info{color:#fff;background-color:#00c9dc}a.badge-info:hover,.search-results-container .result h5.badge-info:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-info:hover:not(:hover):not(:active),a.badge-info:focus,.search-results-container .result h5.badge-info:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-info:focus:not(:hover):not(:active){color:#fff;background-color:#009aa9}a.badge-info:focus,.search-results-container .result h5.badge-info:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-info:focus:not(:hover):not(:active),a.badge-info.focus,.search-results-container .result h5.badge-info.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-info.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(0,201,220,.5)}.badge-warning{color:#212529;background-color:#fdf314}a.badge-warning:hover,.search-results-container .result h5.badge-warning:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-warning:hover:not(:hover):not(:active),a.badge-warning:focus,.search-results-container .result h5.badge-warning:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-warning:focus:not(:hover):not(:active){color:#212529;background-color:#dcd302}a.badge-warning:focus,.search-results-container .result h5.badge-warning:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-warning:focus:not(:hover):not(:active),a.badge-warning.focus,.search-results-container .result h5.badge-warning.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-warning.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(253,243,20,.5)}.badge-danger{color:#fff;background-color:#dc1200}a.badge-danger:hover,.search-results-container .result h5.badge-danger:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-danger:hover:not(:hover):not(:active),a.badge-danger:focus,.search-results-container .result h5.badge-danger:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-danger:focus:not(:hover):not(:active){color:#fff;background-color:#a90e00}a.badge-danger:focus,.search-results-container .result h5.badge-danger:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-danger:focus:not(:hover):not(:active),a.badge-danger.focus,.search-results-container .result h5.badge-danger.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-danger.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(220,18,0,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:hover,.search-results-container .result h5.badge-light:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-light:hover:not(:hover):not(:active),a.badge-light:focus,.search-results-container .result h5.badge-light:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-light:focus:not(:hover):not(:active){color:#212529;background-color:#dae0e5}a.badge-light:focus,.search-results-container .result h5.badge-light:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-light:focus:not(:hover):not(:active),a.badge-light.focus,.search-results-container .result h5.badge-light.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-light.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:hover,.search-results-container .result h5.badge-dark:hover:not(:hover):not(:active),.search-results-full-container .result h5.badge-dark:hover:not(:hover):not(:active),a.badge-dark:focus,.search-results-container .result h5.badge-dark:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-dark:focus:not(:hover):not(:active){color:#fff;background-color:#1d2124}a.badge-dark:focus,.search-results-container .result h5.badge-dark:focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-dark:focus:not(:hover):not(:active),a.badge-dark.focus,.search-results-container .result h5.badge-dark.focus:not(:hover):not(:active),.search-results-full-container .result h5.badge-dark.focus:not(:hover):not(:active){outline:0;box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media(min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#003400;background-color:#cce0cc;border-color:#b8d4b8}.alert-primary hr{border-top-color:#a8caa8}.alert-primary .alert-link{color:#000100}.alert-secondary{color:#854900;background-color:#ffe8cc;border-color:#ffdfb8}.alert-secondary hr{border-top-color:#ffd49f}.alert-secondary .alert-link{color:#522d00}.alert-success{color:#004a2c;background-color:#cce9dd;border-color:#b8e0cf}.alert-success hr{border-top-color:#a6d8c3}.alert-success .alert-link{color:#00170e}.alert-info{color:#006972;background-color:#ccf4f8;border-color:#b8f0f5}.alert-info hr{border-top-color:#a2ebf2}.alert-info .alert-link{color:#003a3f}.alert-warning{color:#847e0a;background-color:#fffdd0;border-color:#fefcbd}.alert-warning hr{border-top-color:#fefba4}.alert-warning .alert-link{color:#555106}.alert-danger{color:#720900;background-color:#f8d0cc;border-color:#f5bdb8}.alert-danger hr{border-top-color:#f2a8a2}.alert-danger .alert-link{color:#3f0500}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#006400;transition:width .6s ease}@media(prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}@media(prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.media{display:flex;align-items:flex-start}.media-body{flex:1}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#006400;border-color:#006400}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal .list-group-item.active{margin-top:0}.list-group-horizontal .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media(min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm .list-group-item.active{margin-top:0}.list-group-horizontal-sm .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md .list-group-item.active{margin-top:0}.list-group-horizontal-md .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg .list-group-item.active{margin-top:0}.list-group-horizontal-lg .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media(min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl .list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl .list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl .list-group-item.active{margin-top:0}.list-group-horizontal-xl .list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl .list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush .list-group-item{border-right-width:0;border-left-width:0;border-radius:0}.list-group-flush .list-group-item:first-child{border-top-width:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#003400;background-color:#b8d4b8}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#003400;background-color:#a8caa8}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#003400;border-color:#003400}.list-group-item-secondary{color:#854900;background-color:#ffdfb8}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#854900;background-color:#ffd49f}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#854900;border-color:#854900}.list-group-item-success{color:#004a2c;background-color:#b8e0cf}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#004a2c;background-color:#a6d8c3}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#004a2c;border-color:#004a2c}.list-group-item-info{color:#006972;background-color:#b8f0f5}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#006972;background-color:#a2ebf2}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#006972;border-color:#006972}.list-group-item-warning{color:#847e0a;background-color:#fefcbd}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#847e0a;background-color:#fefba4}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#847e0a;border-color:#847e0a}.list-group-item-danger{color:#720900;background-color:#f5bdb8}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#720900;background-color:#f2a8a2}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#720900;border-color:#720900}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0;appearance:none}a.close.disabled,.search-results-container .result h5.close.disabled:not(:hover):not(:active),.search-results-full-container .result h5.close.disabled:not(:hover):not(:active){pointer-events:none}.toast{max-width:350px;overflow:hidden;font-size:.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);backdrop-filter:blur(10px);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media(prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid #e9ecef;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #e9ecef;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem)}.modal-sm{max-width:300px}}@media(min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media(min-width:1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^=top]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^=top] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^=top] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^=right]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^=right] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^=right] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^=bottom]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^=bottom] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^=bottom] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^=left]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^=left] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^=left] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,segoe ui,Roboto,helvetica neue,Arial,noto sans,sans-serif,apple color emoji,segoe ui emoji,segoe ui symbol,noto color emoji;font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^=top]{margin-bottom:.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^=top]>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^=top]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^=top]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^=right]{margin-left:.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^=right]>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^=right]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^=right]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^=bottom]{margin-top:.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^=bottom]>.arrow{top:calc(-.5rem - 1px)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^=bottom]>.arrow::before{top:0;border-width:0 .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^=bottom]>.arrow::after{top:1px;border-width:0 .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^=left]{margin-right:.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^=left]>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^=left]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^=left]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion:reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%}.carousel-control-prev-icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiNmZmYiIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA4IDgiPjxwYXRoIGQ9Ik01LjI1LjBsLTQgNCA0IDQgMS41LTEuNUw0LjI1IDRsMi41LTIuNUw1LjI1LjB6Ii8+PC9zdmc+)}.carousel-control-next-icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9IiNmZmYiIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCA4IDgiPjxwYXRoIGQ9Ik0yLjc1LjBsLTEuNSAxLjVMMy43NSA0bC0yLjUgMi41TDIuNzUgOGw0LTQtNC00eiIvPjwvc3ZnPg==)}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media(prefers-reduced-motion:reduce){.carousel-indicators li{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#006400!important}a.bg-primary:hover,.search-results-container .result h5.bg-primary:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-primary:hover:not(:hover):not(:active),a.bg-primary:focus,.search-results-container .result h5.bg-primary:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-primary:focus:not(:hover):not(:active),button.bg-primary:hover,button.bg-primary:focus{background-color:#003100!important}.bg-secondary{background-color:#ff8c00!important}a.bg-secondary:hover,.search-results-container .result h5.bg-secondary:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-secondary:hover:not(:hover):not(:active),a.bg-secondary:focus,.search-results-container .result h5.bg-secondary:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-secondary:focus:not(:hover):not(:active),button.bg-secondary:hover,button.bg-secondary:focus{background-color:#cc7000!important}.bg-success{background-color:#008f54!important}a.bg-success:hover,.search-results-container .result h5.bg-success:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-success:hover:not(:hover):not(:active),a.bg-success:focus,.search-results-container .result h5.bg-success:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-success:focus:not(:hover):not(:active),button.bg-success:hover,button.bg-success:focus{background-color:#005c36!important}.bg-info{background-color:#00c9dc!important}a.bg-info:hover,.search-results-container .result h5.bg-info:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-info:hover:not(:hover):not(:active),a.bg-info:focus,.search-results-container .result h5.bg-info:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-info:focus:not(:hover):not(:active),button.bg-info:hover,button.bg-info:focus{background-color:#009aa9!important}.bg-warning{background-color:#fdf314!important}a.bg-warning:hover,.search-results-container .result h5.bg-warning:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-warning:hover:not(:hover):not(:active),a.bg-warning:focus,.search-results-container .result h5.bg-warning:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-warning:focus:not(:hover):not(:active),button.bg-warning:hover,button.bg-warning:focus{background-color:#dcd302!important}.bg-danger{background-color:#dc1200!important}a.bg-danger:hover,.search-results-container .result h5.bg-danger:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-danger:hover:not(:hover):not(:active),a.bg-danger:focus,.search-results-container .result h5.bg-danger:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-danger:focus:not(:hover):not(:active),button.bg-danger:hover,button.bg-danger:focus{background-color:#a90e00!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:hover,.search-results-container .result h5.bg-light:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-light:hover:not(:hover):not(:active),a.bg-light:focus,.search-results-container .result h5.bg-light:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-light:focus:not(:hover):not(:active),button.bg-light:hover,button.bg-light:focus{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:hover,.search-results-container .result h5.bg-dark:hover:not(:hover):not(:active),.search-results-full-container .result h5.bg-dark:hover:not(:hover):not(:active),a.bg-dark:focus,.search-results-container .result h5.bg-dark:focus:not(:hover):not(:active),.search-results-full-container .result h5.bg-dark:focus:not(:hover):not(:active),button.bg-dark:hover,button.bg-dark:focus{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #e9ecef!important}.border-top{border-top:1px solid #e9ecef!important}.border-right{border-right:1px solid #e9ecef!important}.border-bottom{border-bottom:1px solid #e9ecef!important}.border-left{border-left:1px solid #e9ecef!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#006400!important}.border-secondary{border-color:#ff8c00!important}.border-success{border-color:#008f54!important}.border-info{border-color:#00c9dc!important}.border-warning{border-color:#fdf314!important}.border-danger{border-color:#dc1200!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-lg{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media(min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media(min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media(min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media(min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.85714286%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-fill{flex:1 1 auto!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media(min-width:576px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media(min-width:768px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media(min-width:992px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media(min-width:1200px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media(min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media(min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media(min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media(min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports(position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.min-vw-100{min-width:100vw!important}.min-vh-100{min-height:100vh!important}.vw-100{width:100vw!important}.vh-100{height:100vh!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:transparent}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-n1{margin:-.25rem!important}.mt-n1,.my-n1{margin-top:-.25rem!important}.mr-n1,.mx-n1{margin-right:-.25rem!important}.mb-n1,.my-n1{margin-bottom:-.25rem!important}.ml-n1,.mx-n1{margin-left:-.25rem!important}.m-n2{margin:-.5rem!important}.mt-n2,.my-n2{margin-top:-.5rem!important}.mr-n2,.mx-n2{margin-right:-.5rem!important}.mb-n2,.my-n2{margin-bottom:-.5rem!important}.ml-n2,.mx-n2{margin-left:-.5rem!important}.m-n3{margin:-1rem!important}.mt-n3,.my-n3{margin-top:-1rem!important}.mr-n3,.mx-n3{margin-right:-1rem!important}.mb-n3,.my-n3{margin-bottom:-1rem!important}.ml-n3,.mx-n3{margin-left:-1rem!important}.m-n4{margin:-1.5rem!important}.mt-n4,.my-n4{margin-top:-1.5rem!important}.mr-n4,.mx-n4{margin-right:-1.5rem!important}.mb-n4,.my-n4{margin-bottom:-1.5rem!important}.ml-n4,.mx-n4{margin-left:-1.5rem!important}.m-n5{margin:-3rem!important}.mt-n5,.my-n5{margin-top:-3rem!important}.mr-n5,.mx-n5{margin-right:-3rem!important}.mb-n5,.my-n5{margin-bottom:-3rem!important}.ml-n5,.mx-n5{margin-left:-3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media(min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-n1{margin:-.25rem!important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem!important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem!important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem!important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem!important}.m-sm-n2{margin:-.5rem!important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem!important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem!important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem!important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem!important}.m-sm-n3{margin:-1rem!important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem!important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem!important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem!important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem!important}.m-sm-n4{margin:-1.5rem!important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem!important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem!important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem!important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem!important}.m-sm-n5{margin:-3rem!important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem!important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem!important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem!important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media(min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-n1{margin:-.25rem!important}.mt-md-n1,.my-md-n1{margin-top:-.25rem!important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem!important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem!important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem!important}.m-md-n2{margin:-.5rem!important}.mt-md-n2,.my-md-n2{margin-top:-.5rem!important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem!important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem!important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem!important}.m-md-n3{margin:-1rem!important}.mt-md-n3,.my-md-n3{margin-top:-1rem!important}.mr-md-n3,.mx-md-n3{margin-right:-1rem!important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem!important}.ml-md-n3,.mx-md-n3{margin-left:-1rem!important}.m-md-n4{margin:-1.5rem!important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem!important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem!important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem!important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem!important}.m-md-n5{margin:-3rem!important}.mt-md-n5,.my-md-n5{margin-top:-3rem!important}.mr-md-n5,.mx-md-n5{margin-right:-3rem!important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem!important}.ml-md-n5,.mx-md-n5{margin-left:-3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media(min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-n1{margin:-.25rem!important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem!important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem!important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem!important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem!important}.m-lg-n2{margin:-.5rem!important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem!important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem!important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem!important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem!important}.m-lg-n3{margin:-1rem!important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem!important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem!important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem!important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem!important}.m-lg-n4{margin:-1.5rem!important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem!important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem!important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem!important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem!important}.m-lg-n5{margin:-3rem!important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem!important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem!important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem!important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media(min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-n1{margin:-.25rem!important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem!important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem!important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem!important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem!important}.m-xl-n2{margin:-.5rem!important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem!important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem!important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem!important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem!important}.m-xl-n3{margin:-1rem!important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem!important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem!important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem!important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem!important}.m-xl-n4{margin:-1.5rem!important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem!important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem!important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem!important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem!important}.m-xl-n5{margin:-3rem!important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem!important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem!important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem!important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,liberation mono,courier new,monospace!important}.text-justify{text-align:justify!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media(min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media(min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media(min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media(min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-lighter{font-weight:lighter!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-weight-bolder{font-weight:bolder!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#006400!important}a.text-primary:hover,.search-results-container .result h5.text-primary:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-primary:hover:not(:hover):not(:active),a.text-primary:focus,.search-results-container .result h5.text-primary:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-primary:focus:not(:hover):not(:active){color:#001800!important}.text-secondary{color:#ff8c00!important}a.text-secondary:hover,.search-results-container .result h5.text-secondary:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-secondary:hover:not(:hover):not(:active),a.text-secondary:focus,.search-results-container .result h5.text-secondary:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-secondary:focus:not(:hover):not(:active){color:#b36200!important}.text-success{color:#008f54!important}a.text-success:hover,.search-results-container .result h5.text-success:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-success:hover:not(:hover):not(:active),a.text-success:focus,.search-results-container .result h5.text-success:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-success:focus:not(:hover):not(:active){color:#004327!important}.text-info{color:#00c9dc!important}a.text-info:hover,.search-results-container .result h5.text-info:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-info:hover:not(:hover):not(:active),a.text-info:focus,.search-results-container .result h5.text-info:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-info:focus:not(:hover):not(:active){color:#008390!important}.text-warning{color:#fdf314!important}a.text-warning:hover,.search-results-container .result h5.text-warning:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-warning:hover:not(:hover):not(:active),a.text-warning:focus,.search-results-container .result h5.text-warning:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-warning:focus:not(:hover):not(:active){color:#c3bb02!important}.text-danger{color:#dc1200!important}a.text-danger:hover,.search-results-container .result h5.text-danger:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-danger:hover:not(:hover):not(:active),a.text-danger:focus,.search-results-container .result h5.text-danger:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-danger:focus:not(:hover):not(:active){color:#900c00!important}.text-light{color:#f8f9fa!important}a.text-light:hover,.search-results-container .result h5.text-light:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-light:hover:not(:hover):not(:active),a.text-light:focus,.search-results-container .result h5.text-light:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-light:focus:not(:hover):not(:active){color:#cbd3da!important}.text-dark{color:#343a40!important}a.text-dark:hover,.search-results-container .result h5.text-dark:hover:not(:hover):not(:active),.search-results-full-container .result h5.text-dark:hover:not(:hover):not(:active),a.text-dark:focus,.search-results-container .result h5.text-dark:focus:not(:hover):not(:active),.search-results-full-container .result h5.text-dark:focus:not(:hover):not(:active){color:#121416!important}.text-body{color:#212529!important}.text-muted{color:#6c757d!important}.text-black-50{color:rgba(0,0,0,.5)!important}.text-white-50{color:rgba(255,255,255,.5)!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none!important}.text-break{word-break:break-word!important;overflow-wrap:break-word!important}.text-reset{color:inherit!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,*::before,*::after{text-shadow:none!important;box-shadow:none!important}a:not(.btn),.search-results-container .result h5:not(.btn):not(:hover):not(:active),.search-results-full-container .result h5:not(.btn):not(:hover):not(:active){text-decoration:underline}abbr[title]::after{content:" (" attr(title)")"}pre{white-space:pre-wrap!important}pre,blockquote{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6!important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#e9ecef}.table .thead-dark th{color:inherit;border-color:#e9ecef}}.hidden{display:none!important}.display-contents{display:contents}.overflow-hidden{overflow:hidden}.pointer{cursor:pointer}@media screen and (max-width:767px){.hide-on-mobile{display:none}}.header-image{background-repeat:no-repeat;background-attachment:scroll;background-position:50% 100%;background-size:cover;border-radius:0}nav[role=navigation]{z-index:1000!important}.hero{position:relative}.hero .jumbotron{display:flex;flex-direction:column;justify-content:center;align-items:center}.hero .particles-js{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden}@media(max-width:991.98px){.search-results-container.show{display:none}}@media(max-width:991.98px){.navbar-collapse{max-height:0;transition:max-height .5s cubic-bezier(0,1,0,1);overflow:hidden;display:block}.navbar-collapse.in{max-height:65em;transition:max-height 1s ease-in-out}}.faq{text-align:left}.faq .card{border:none;margin-bottom:10px}.faq .card .card-header{border:1px solid transparent;color:#006400;cursor:pointer;display:inline-block;font-size:1rem;font-weight:400;line-height:1.5;padding:15px;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;user-select:none;vertical-align:middle}select.error,input.error,textarea.error{border-color:#b94a48;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);border-color:#b94a48}select.error,input.error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAARCAYAAAA/mJfHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAYSmlDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjarVllVBV/t94TJ6hDdx26pLu7QboVOHRzODQYoIAICmKggoKCiogKBiklJqKIKKhYhIgoKgaKinI/gP7f9733frhr3d+HWc888+y9n73XrJk18wMQFqDR6XEoB0B8QgrD3daC6uvnTyW9ABSEgAJrQJUWmkw3d3V1gv95IQBfRwEBALivTKPT4+D/tjjDwpNDARBXAAgJSw6NB0AuAuBCoXRGCgBhCACk0lPoKQCELwDAw/D18wcgkgGAJ3IFiwAAT8gKVgMAHoanuyUA0QqAzEqjMSIBKK4AQE0LjUwBoNABiFwJYdEJADx5AEST0ChaGIDQVQBYEx+fGAYgNA8A8iH/kify33KG/M1Jo0X+xSu9AAAA2So6mR5Hy4T/7xUfl/qnhiQAsEYx7NwBgAcAORmb6OgOAKwASGdCyFoXAOACQG5GhwGs4rGoVDuvVf1caLKlPwDwAaAQRrNyBAARAJQvNdbLfBVr0BgAK3p0bXSKvecqDmEkuq/mR9PCk609/uCocHun1ZyFCXFr/+CqiGgbewDgAEAvZkV5+qz4RK+mRXuvBQAKADqUHOvhuKp/nhVlufaPhpHq7gUA0gDolwiGjfuKBhOIT/7TF6YSSrP2AAABAMwsJcrTbiUW8w1P9nX64y0s3Mp6xQMWFp7gteoZS6GnWLivxhbQ41xX9VhVeJyt+8qcsabkNI8/scMpDM/VmWOTMTQH1xX/2Fd6iqvnijccByewBCugQipQIQQSIQaiB+da54C6esUGaMCASAgH5VXmT4QP0IABCUADD8iCd5AA4ZD8N84CaMCAcEiDBPj1l105KkME0IABaRAOyRALr4AB8bgQboIb4k64CW6Gm+AauB6u/yeOyv6nKtGaaEW0I9oQFf76CIVEiINEYED0f+f+iSS8ItwjTBJGCOOEx+AIcRAOqcCAcEj425k3vAQGRP85D4rewvgP51RwhnFIXZ1KOIRAAsz+0eCyuAaujVvgxrgJrg9UnA8XAmVcC9fDzXFT3BDXxvX/zWHqXxf/zPI/64VDwr/1uMpTFCnaqy5C/vq3/Kv6zyyW/zKjMEgEx/9UYoXYBewGdhnrxzqxVqBiPVgbdhvrwlr/5U54CQyI/FvNHcIhAWIhDqL/aNQa1GbVlv5bddqqAwaEQzJASnhGCgCAZSI9kxEdGZVCNafT48Kp9gmhKmuoGmrq2gC+fv7UlcfHZ3dAAADhu/sPl6gOoB8KgGz9hwt+D9AaA0Dm+oeTbQVg1wDo3x+aykhb4XAAAAIwAzvwgCCIgRTIgzJogA4YghlYgwO4gCf4QSCEQhTEAwPSYQPkQgEUwy7YBxVQDbVwEs7AeWiFTrgM12EAhmAEnsA4TMNbmIev8BNBEBLChnAjgog4IoMoIRqIHmKCWCNOiDvihwQjkUgCkopsQLYixchupAI5itQj55B25DLSj9xDHiMTyCzyCfmBYigryoOKorKoKqqHmqOOqCe6Ho1Ek9AsNA8tQQ+gNehptAW9jA6gI+g4+hZdwABjwfgwCUwZ08MsMRfMH4vAGNgmrAgrx2qws1gHdgO7j41jc9h3nIhz41RcGTfE7XAvPBRPwjfhO/AK/CTegl/F7+MT+Dz+m8BGECEoEQwI9gRfQiQhnVBAKCecIDQTrhFGCNOEr0QikY8oR9Ql2hH9iDHEbOIO4mFiI7GXeI84RVwgkUiCJCWSMcmFRCOlkApIB0mnST2kYdI0aZHMQhYna5BtyP7kBPIWcjn5FLmbPEyeIf9k4mCSYTJgcmEKY8pkKmU6xtTBdJdpmuknMyezHLMxsydzDHMu8wHms8zXmJ8yf2ZhYZFk0WdxY4lmyWE5wNLEcpNlguU7KxerIqsl6zrWVNYS1jrWXtbHrJ/Z2Nhk2czY/NlS2ErY6tmusD1nW6RwU1Qo9pQwymZKJaWFMkx5z87ELsNuzh7InsVezn6B/S77HAcThyyHJQeNYxNHJUc7x0OOBU5uTnVOF854zh2cpzj7OV9zkbhkuay5wrjyuGq5rnBNcWPcUtyW3KHcW7mPcV/jnuYh8sjx2PPE8BTznOEZ5Jnn5eLV4vXmzeCt5O3iHefD+GT57Pni+Er5zvON8v3gF+U35w/n385/ln+Y/5uAsICZQLhAkUCjwIjAD0GqoLVgrGCZYKvgMyFcSFHITShdqEromtCcMI+woXCocJHweeExEVREUcRdJFukVuS2yIKomKitKF30oOgV0TkxPjEzsRixvWLdYrPi3OIm4tHie8V7xN9Qeanm1DjqAepV6ryEiISdRKrEUYlBiZ+ScpJeklskGyWfSTFL6UlFSO2V6pOalxaXdpbeIN0gPSbDJKMnEyWzX+aGzDdZOVkf2W2yrbKv5QTk7OWy5BrknsqzyZvKJ8nXyD9QICroKcQqHFYYUkQVtRWjFCsV7yqhSjpK0UqHle6tIazRX5OwpmbNQ2VWZXPlNOUG5QkVPhUnlS0qrSrvVaVV/VXLVG+o/lbTVotTO6b2RJ1L3UF9i3qH+icNRY1QjUqNB5psmjaamzXbND9qKWmFa1VpPdLm1nbW3qbdp/1LR1eHoXNWZ1ZXWjdY95DuQz0ePVe9HXo39Qn6Fvqb9Tv1vxvoGKQYnDf4YKhsGGt4yvC1kZxRuNExoyljSWOa8VHjcROqSbDJEZNxUwlTmmmN6aSZlFmY2QmzGXMF8xjz0+bvLdQsGBbNFt8sDSw3WvZaYVa2VkVWg9Zc1l7WFdbPbSRtIm0abOZttW2zbXvtCHaOdmV2D+1F7UPt6+3nHXQdNjpcdWR19HCscJx0UnRiOHU4o84Oznucn66VWZuwttUFXOxd9rg8c5VzTXK95EZ0c3WrdHvlru6+wf2GB7dHkMcpj6+eFp6lnk+85L1Svfq82b3Xedd7f/Ox8tntM+6r6rvRd8BPyC/ar82f5O/tf8J/IcA6YF/A9DrtdQXrRtfLrc9Y3x8oFBgX2BXEHkQLuhBMCPYJPhW8RHOh1dAWQuxDDoXMh1qG7g99G2YWtjdsNtw4fHf4TIRxxO6I15HGkXsiZ6NMo8qj5qItoyuiP8bYxVTHfIt1ia2LXY7ziWuMJ8cHx7cncCXEJlxNFEvMSLxHV6IX0MeTDJL2Jc0zHBknkpHk9cltKTwp9JTbqfKp+akTaSZplWmL6d7pFzI4MxIybmcqZm7PnMmyyTqejWeHZvdtkNiQu2Fio/nGo5uQTSGb+jZLbc7bPJ1jm3Mylzk3NvfOFrUtu7d82eqztSNPNC8nbyrfNr+hgFLAKHi4zXBbdSFeGF04uF1z+8Htv4vCim4VqxWXFy/tCN1xa6f6zgM7l0siSgZLdUqrdhF3JewaLTMtO7mbc3fW7qk9znta9lL3Fu39si9oX3+5Vnn1fub9qfvHDzgdaDsofXDXwaWKqIqRSovKxkMih7Yf+nY47PBwlVnV2WrR6uLqH0eijzw6anu0pUa2pryWWJtW++qY97Ebx/WO158QOlF84lddQt34SfeTV+t16+tPiZwqbUAbUhtmT687PXTG6kzbWeWzRxv5GouboCm16c254HOj5x3P913Qu3D2oszFQ83czUUtSEtmy3xrVOt4m1/bvXaH9r4Ow47mSyqX6jolOiu7eLtKu5m787qXe7J6FnrpvXOXIy9P9QX1Pbnie+XBVberg9ccr928bnP9yg3zGz03jW929hv0t9/Su9U6oDPQclv7dvMd7TvNgzqDLXd177YN6Q913DO61z1sOnz5vtX96w/sHwyMrB25N+o1+ujhuofjj8IevX4c9/jjWNrYzyc5TwlPi55xPCt/LvK85oXCi8ZxnfGuCauJ25Mek0+mQqfevkx+uTSd94rtVfmM+Ez9a43XnbM2s0NvAt5Mv6W//TlX8I7z3aH38u8vfjD7cHved376I+Pj8qcdnwU/133R+tK34Lrw/Gv815/fihYFF09+1/t+44fPj5mf6UukpQO/FH51/Hb8/XQ5fnmZTmPQAAAAAwA0IgLgUx0Amx8A9xAAM2Xl+2t1YQgACgAkEAMHKIYpRBFJQHpRQTQFHcPssSu4Lf6AEE/kJPaRNpBNmEhMz5jbWQ6xlrLVUZ5ycHA6cm3n7ufl5FvHf1oQF6IJd4lSxXaIL0qESY5Jr5Xpl1OVL1F4q2S/plr5q6ql2k71IU02LQvtZJ1Dur164/q/DPmNlIz1TaxN3c1CzZMt8iz3WzVY99jct521W3bgdVzjZOkcsDbaJc013223e7VHg2erV5/3gM+w72O/F/5TAa/XvVv/OvBp0GBwD60xpCp0Z1hWeESEW6RhlHQ0JfprzIvY63H18TsT6IkedN0koaQlxvPk3pTa1Py0iHT7DKVM5sw3WbezmzYc2Ji3KX1zUg4jN2tL0dajeV35L7YxFRptpxfVFo/uZC4xKo3fVVU2uPvX3jX7AsqL9rccGK9gqdQ+FHR4e9X56idH8RrlWu9jm4+fPHGvbrGeesqpYcPp82c+Nho0lZ77cCHg4t0Wl9YH7UYdKZfqO592s/Ro9npfTurLv1J2tfxa+fWyG4U3t/Zvu7VzYOft/Dspgz53Ve7+HOq9lz2sM/z1/sMH7SMVoxsfBj2yeCwzxjT27sm9p83PKp5vfBE8bjWhMMkx+X3q1cvR6f5Xl2cuvW6fbX9z/G3JXNq7wPfWH5TmOeYXPo596v589Ev+QtRXx2+qi9yL374//dH7s2Yp71f4b6tlyeVlACCCEJhBBlxDuBEnZBfyAtVES9DPWBA2invhzwh0IoXYSgonC5HHmA4xR7JYsBqzeVKi2HM4jnBe5prl4eW14svkbxT4IKQizBDpFGMR96aekliWMpfOlemRXZLXVYhRPKw0sOaTCq+qppqdeoBGpGaSVqb2Rp0s3Ri9AH0nA2NDNSNJY14TsskP03dmE+YjFrcsu60uWNfZHLAttEu3j3Lwc7Rz0nOWW8vrgrt8cZ10u+fe69HkWeVV6J3sE+hr76fpLxpADHi/bnR9V2BtUFFwIs0zRCuUNXQyrD28NCIi0iiKM+pV9KWYstjwOIN49viphNbEQrpfklLSEmMw+UgKI9UyjTdtJr09Y0dmYJZaNpr9cEPjxuJN8Zu9cqxyDbbobzXOs8v3LUjYtq3w+PYrRRPFv3eKlOiXeu9KLtu1+/Se/r2vytH9Igd0DrpVxFcWHzp9eKjq6xHJo641W2vbj308oVKXdPJi/bcG/dMbznQ3QpP5ua3nr10kNNu2FLbeaCd1WF/a0tnV9aVHttfjcnZf1ZVLV0euzV7/dhPv574lMaB62/iO06D/3aih9HsFw/vu1zxoHOkc7X84+mj68Zcn2FOeZzLP9V44jUdO1E7OvpSb9n9VMHPq9Y3ZiTeLc5R3Mu9NPwTM53wc+qz5Zc/C52/uixd/CPzMX1r8nb68DAA4cIIirIUc6EVIiAGSgrSiKOqMHkF/YoHYLdwIbyHoEfqIrsQpUjZZmHyDaSdzKIsRqzDrb7ZJygB7M8dxzgNcJdyFPPm8BXzF/HsEqgUbhNqEu0S6RLvFesS7qZckmiUbpA5LF8ukyq6TM5OXVACFJ4qtSsVrvJWpym9UmlVz1BzV+dQnNBo0U7VMtZm07+sc1o3S09Jb1O82yDd0NOIyGjOuMYkx1TBdMrtuXmax3lLR8pvVFetSmwBbOdtPdt32RQ7ejhKOb51anHPWOrnwuUy4Nrgluxt6oB63PHd7+XtTvWd8zvqm+hn6o/79AaXrPNbzrX8cWBm0Plg0+BntcMj6UJHQsbAD4d4R3BF3I4ujrKMh+lJMWqx67FxcXXxIgkjCw8Q99LVJ5KTLjKxkzeS5lOOpgWn8aXfTt2WYZixmNmVFZ1OzH2/Yu9Fzk+Cm6c1tOXtzM7dEbF2X55cfUBC+LbUwf3t50Ynilh3Xd46UTJd+KcN2c++R3Ku2z6Dccr/DAbeDfhUhlYmHNh/eU3W6euDIhxqZ2sxjQyfk6jadHD2l3JB3+slZ9cbCpufndS4UX3zRotm6re1ph+alos7JbqOeA71f+zyvNF+Tu37spnL/tYHYO9KDc0M3hs89qB9tenR57NkzeKE2UfeyYKboTet79o+FCwKLzUs+y8sAK//hAACIOgDHpwC8jwK4BQDUKQHIVAJQeABc2QA89QG1KAXk8UFAbM/+fX+wgRzYQARsg5PQD28RCqKOeCFZyGGkE3mCLKGiqCkaghagp9C76BdMGDPHorBdWDs2ibPg2ngwvgNvw18SuAimhATCUcIIkZloTswgnifOkeRJkaQ60ixZhZxK7mFiYfJnOs2MMPsyn2ehsCSwDLPqsR5hI7Mx2J5THCjt7PLsFRxsHLkc3zgTOV9zhXK94A7hnuGJ5/nKm8tH4TvMr8p/RSBAYEGwTEhd6L5wuoioyJDoNjELcRC/TM2XcJYUlHwtdUm6TCZG1kZORp5VfkFhUnFY6eqaDuULKk2qjWrn1ds0ejUHtJ5rf9TF9Xj1pQyUDdWN1IwVTaimXGao2QfzJxY9ljVWhdaJNr62Fnaq9mIO7I6Y46LTvPObtdMuk64Tbi/d33p89vzlzeTD7yvnp+/vHBC6Lnv9vsCmoMHgdyGUUM0wv/DNEbWR16Kmon/FcsVJxCsmqCQq0xWSJBl8yUzJP1Jm04TSnTPyMnuyfm+w3rhn09sc59xLW7Xy2gvst01t31YsseNsiVnpeFnZHt99xvvtD6ZXXqsSPkKpQWu/H/9U975+rmHuzIfGhXO/LpJbhNtUO6w6/bqje9P6Nl3Nub7xZtqtuNvBg8VDbcNvRiQern9c/eTVc/Xx3MmRaaWZwtmZOdv3pz5yfM5eeLcY8WPmF315GQDYQQXcIBUqoAdeIiyIBhKA5CH1yADyAeVBDdBgtBBtQh9jGKaM+WH52DnsBc6GG+GxeCV+B/9NUCeEEQ4RRojsRCfiduJNEjPJmbSbNEaWITPIfUx8THFM15mlmLcwT7M4sHSwKrFWs/Gy7aAQKVvYgT2XA+Mo5KRw7ueS5GrkNuMe4YnnJfLW8JnzTfIXCCgLjArmCqkJjQvvEbETxUX7xLaK21BZqaMSNZLJUjbSYtKLMqOyrXJH5PcrlCmWKJWs2a1coXJCtVntpvpzjW9avNoGOqG6JXpd+h8MZYyCjCtNnpiJmYdZNFr+tLa2KbYdsCc46DqGOBU4n1h72WXMdd4d9+DzVPQy8/bzSfYt9TvrPxjwcT1foHFQRHAZrTvkfZhUuG9EaeT1qF8xWrHRcVXx9xJRukZSMKMk+VLK6zT2dN2M4MzirLbsmY38m+w3b8w5n/tmq1Te+vyKgkeF/Nv9iqqKX+5ULskovV4msDtxz+19auWVBygHt1eyHtpXJVd942h0Leux8yf8T+L1TQ1BZzjOXmnKOK964XVzXWt0u3LHp86O7i29Tn38V6auNd3Y0O8wIHh7aNDr7tS9rPtiDwZHix95jMk+RZ5Nvrg+0TBVOs2Y8ZgVflM9J/fu3AeT+cFPQZ8/LOR8Y188+EPsZ/Uvod+ly8sAwA/mQIdquAvLiAYSgRxEriGfUUnUHc1DW9E5TALzxXZh/TiGm+BZeCu+QNAmpBG6iASiC7GS+IZkSNpFek22Ih9jIjPRmZ4yOzH3suiydLBasN5m82N7Q9nEzsvexOHC8ZGznMuEa5b7MI8HLxvvLb7t/E4CXAJjgseFGMLmItwib0Wvix0TL6DGSnhKmktpSMvJiMsKywnJUxWUFPWVHNfQlDeoVKh2qb3UoGgaaTG0z+p80NPWzzUYNpI3zjN5ZeZk3mqpZHXMRsK21l7BodnJyvmRC92N1b3JM8CbyafLLy1Aa91iYG/wzpDAMJ0I1sjH0RWx9nGzCZmJS0kpjOkU19QL6ZwZjMwH2QYbjm5i2ZyRM7PFd+vtfIuCjkKt7S3Fxjv6S/xK35Zt2sO5t6ZcdX/7QZOKnkNGh1uqCUecju6reXFM8Xj6iWsneesjTnWcppwJO9vZxHuOfn7gonxzUcu7Nrf21ktinQVd73t8ei/3KV3Zd3X5esyNB/1mtxpu891JHrw1JHwvavj0/TcjUqM+D7c8Ovn41tj0k6VnHM/FXyiNa08YTJpMmb00mzZ5ZTCj+1p9VvGN5FvK29m59nfp77Xfz304Pu/3kflj56eIzxyf276sW4CFmq8WXye/bV4UWWz/7vV9/seOn3I/+5YClxZ/7fmt+rt/OWx5GSA5QlNjZSeK1QKA8Hx5+bMsAGk3wK+y5eWfNcvLv2oBsKcAvXErezsAAEQOgEO1/9sey38BOi/O6KPLSP4AADwwaVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzAxNCA3OS4xNTY3OTcsIDIwMTQvMDgvMjAtMDk6NTM6MDIgICAgICAgICI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICAgICAgICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgICAgICAgICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICAgICAgICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICAgICAgICAgIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgICAgICAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIKICAgICAgICAgICAgeG1sbnM6ZXhpZj0iaHR0cDovL25zLmFkb2JlLmNvbS9leGlmLzEuMC8iPgogICAgICAgICA8eG1wOkNyZWF0b3JUb29sPkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChNYWNpbnRvc2gpPC94bXA6Q3JlYXRvclRvb2w+CiAgICAgICAgIDx4bXA6Q3JlYXRlRGF0ZT4yMDE1LTA1LTE1VDEwOjM4OjU1KzAyOjAwPC94bXA6Q3JlYXRlRGF0ZT4KICAgICAgICAgPHhtcDpNZXRhZGF0YURhdGU+MjAxNS0wNS0xNVQxMDozODo1NSswMjowMDwveG1wOk1ldGFkYXRhRGF0ZT4KICAgICAgICAgPHhtcDpNb2RpZnlEYXRlPjIwMTUtMDUtMTVUMTA6Mzg6NTUrMDI6MDA8L3htcDpNb2RpZnlEYXRlPgogICAgICAgICA8eG1wTU06SW5zdGFuY2VJRD54bXAuaWlkOjU4ZmM5Yzg4LWFiYWUtNGEzMC1iNGUxLTUyMTQyZWYzMzM4NDwveG1wTU06SW5zdGFuY2VJRD4KICAgICAgICAgPHhtcE1NOkRvY3VtZW50SUQ+YWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjM4YmMxOTAwLTNiNmMtMTE3OC05ZDQ5LWY0MzVhZTM4NTFiMTwveG1wTU06RG9jdW1lbnRJRD4KICAgICAgICAgPHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD54bXAuZGlkOmQ1ZjJhY2QyLTQ2ZDUtNGVlZS05NDllLThkMDI0MTljZjA3ODwveG1wTU06T3JpZ2luYWxEb2N1bWVudElEPgogICAgICAgICA8eG1wTU06SGlzdG9yeT4KICAgICAgICAgICAgPHJkZjpTZXE+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8c3RFdnQ6YWN0aW9uPmNyZWF0ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDpkNWYyYWNkMi00NmQ1LTRlZWUtOTQ5ZS04ZDAyNDE5Y2YwNzg8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTUtMDUtMTVUMTA6Mzg6NTUrMDI6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgICAgPHJkZjpsaSByZGY6cGFyc2VUeXBlPSJSZXNvdXJjZSI+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDphY3Rpb24+c2F2ZWQ8L3N0RXZ0OmFjdGlvbj4KICAgICAgICAgICAgICAgICAgPHN0RXZ0Omluc3RhbmNlSUQ+eG1wLmlpZDo1OGZjOWM4OC1hYmFlLTRhMzAtYjRlMS01MjE0MmVmMzMzODQ8L3N0RXZ0Omluc3RhbmNlSUQ+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDp3aGVuPjIwMTUtMDUtMTVUMTA6Mzg6NTUrMDI6MDA8L3N0RXZ0OndoZW4+CiAgICAgICAgICAgICAgICAgIDxzdEV2dDpzb2Z0d2FyZUFnZW50PkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE0IChNYWNpbnRvc2gpPC9zdEV2dDpzb2Z0d2FyZUFnZW50PgogICAgICAgICAgICAgICAgICA8c3RFdnQ6Y2hhbmdlZD4vPC9zdEV2dDpjaGFuZ2VkPgogICAgICAgICAgICAgICA8L3JkZjpsaT4KICAgICAgICAgICAgPC9yZGY6U2VxPgogICAgICAgICA8L3htcE1NOkhpc3Rvcnk+CiAgICAgICAgIDxwaG90b3Nob3A6VGV4dExheWVycz4KICAgICAgICAgICAgPHJkZjpCYWc+CiAgICAgICAgICAgICAgIDxyZGY6bGkgcmRmOnBhcnNlVHlwZT0iUmVzb3VyY2UiPgogICAgICAgICAgICAgICAgICA8cGhvdG9zaG9wOkxheWVyTmFtZT7DlzwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+w5c8L3Bob3Rvc2hvcDpMYXllclRleHQ+CiAgICAgICAgICAgICAgIDwvcmRmOmxpPgogICAgICAgICAgICAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9IlJlc291cmNlIj4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllck5hbWU+YTwvcGhvdG9zaG9wOkxheWVyTmFtZT4KICAgICAgICAgICAgICAgICAgPHBob3Rvc2hvcDpMYXllclRleHQ+YTwvcGhvdG9zaG9wOkxheWVyVGV4dD4KICAgICAgICAgICAgICAgPC9yZGY6bGk+CiAgICAgICAgICAgIDwvcmRmOkJhZz4KICAgICAgICAgPC9waG90b3Nob3A6VGV4dExheWVycz4KICAgICAgICAgPHBob3Rvc2hvcDpDb2xvck1vZGU+MzwvcGhvdG9zaG9wOkNvbG9yTW9kZT4KICAgICAgICAgPHBob3Rvc2hvcDpJQ0NQcm9maWxlPkRpc3BsYXk8L3Bob3Rvc2hvcDpJQ0NQcm9maWxlPgogICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3BuZzwvZGM6Zm9ybWF0PgogICAgICAgICA8dGlmZjpPcmllbnRhdGlvbj4xPC90aWZmOk9yaWVudGF0aW9uPgogICAgICAgICA8dGlmZjpYUmVzb2x1dGlvbj43MjAwMDAvMTAwMDA8L3RpZmY6WFJlc29sdXRpb24+CiAgICAgICAgIDx0aWZmOllSZXNvbHV0aW9uPjcyMDAwMC8xMDAwMDwvdGlmZjpZUmVzb2x1dGlvbj4KICAgICAgICAgPHRpZmY6UmVzb2x1dGlvblVuaXQ+MjwvdGlmZjpSZXNvbHV0aW9uVW5pdD4KICAgICAgICAgPGV4aWY6Q29sb3JTcGFjZT42NTUzNTwvZXhpZjpDb2xvclNwYWNlPgogICAgICAgICA8ZXhpZjpQaXhlbFhEaW1lbnNpb24+MTk8L2V4aWY6UGl4ZWxYRGltZW5zaW9uPgogICAgICAgICA8ZXhpZjpQaXhlbFlEaW1lbnNpb24+MTc8L2V4aWY6UGl4ZWxZRGltZW5zaW9uPgogICAgICA8L3JkZjpEZXNjcmlwdGlvbj4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/Pmkb7KYAAAAgY0hSTQAAbZgAAHOOAAD6zAAAhPoAAHmBAAD9EwAAMG0AABIpDR4mTgAAAOZJREFUeNrMlL0NwyAQhZ+jLJAVkE4M4BVMR50RvIIzAivYI6S+zh4hHgAhZYWM4DTnCCFsoshFnkQBB9/9impZFhylEw5UFsaaatbUbj1iTR1ruhRhrKkGMALoWVOXsY8AHIAHa1KlyO4AVq+ONbkE1MhWAejjh+cMbBDPqzqJQAGoM3c/qnLdlPRcod7G+jAVYQJs0zT2QKXRmADMufMcaC9NJR1VW46sD6YI2wC9og7HkV+tD6/SaKQgIytWk9Y0B5tTkPVhljqZnbubNevFs7E+PBNbI9HfrA/DV6Pxn7/Gr3oPAAwLXEdIhTGuAAAAAElFTkSuQmCC);background-position:right 5px center;background-repeat:no-repeat}select.valid,input.valid{border-color:#468847;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAgVBMVEUAAABetV5buFtcuFxcuVxdu11cuFxbuFtcuFxcuFxbtltcuFxbtltetl5cuFxct1xduV1fuF9cuFxcuFxbultcuFxduF1gtWBduV1cuFxcuVxcuFxcuFxcuFxet15dt11cuFxcuFxbt1teuF5duV1euF5cuVxcuFxcuFxcuFwAAADG3XcxAAAAKXRSTlMAJrDPRSnn1OjCKvM4MamLFivp8jvI1xgs6jpL++w5UvrxUU83RMe6MlhBCPsAAAABYktHRACIBR1IAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH4AwTFzUBkZPjhwAAAHBJREFUGNNjYCAJMDIxsyDzWdk0NdmR+RyampqcCD4XiM/Nw8DLxy8A4gsKAfnCIgwMopqaYuIMDBIwPgOzJkhEQhLElwIplZYBMmWFQXw5iGHyCppgoCgHM14JLKLIg7BQGSiiqILsRFU1dQ3iPQgAPhMLEPHXqSUAAAAldEVYdGRhdGU6Y3JlYXRlADIwMTYtMTItMTlUMjM6NTM6MDErMDE6MDCbiS6WAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDE2LTEyLTE5VDIzOjUzOjAxKzAxOjAw6tSWKgAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAAASUVORK5CYII=);background-position:right 5px center;background-repeat:no-repeat;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}input[type=file].error{color:#b94a48;background:0 0;box-shadow:none}input[type=file].valid{color:#468847;background:0 0;box-shadow:none}.form-error{display:block;color:#b94a48;margin-top:5px;margin-bottom:10px;line-height:140%}span.help{color:#999;font-size:90%}select.async-validation,input.async-validation,select.validating-server-side,input.validating-server-side{opacity:.5;background-image:url(data:image/gif;base64,R0lGODlhEAAQAPQAAP///wAAAPDw8IqKiuDg4EZGRnp6egAAAFhYWCQkJKysrL6+vhQUFJycnAQEBDY2NmhoaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH+GkNyZWF0ZWQgd2l0aCBhamF4bG9hZC5pbmZvACH5BAAKAAAAIf8LTkVUU0NBUEUyLjADAQAAACwAAAAAEAAQAAAFdyAgAgIJIeWoAkRCCMdBkKtIHIngyMKsErPBYbADpkSCwhDmQCBethRB6Vj4kFCkQPG4IlWDgrNRIwnO4UKBXDufzQvDMaoSDBgFb886MiQadgNABAokfCwzBA8LCg0Egl8jAggGAA1kBIA1BAYzlyILczULC2UhACH5BAAKAAEALAAAAAAQABAAAAV2ICACAmlAZTmOREEIyUEQjLKKxPHADhEvqxlgcGgkGI1DYSVAIAWMx+lwSKkICJ0QsHi9RgKBwnVTiRQQgwF4I4UFDQQEwi6/3YSGWRRmjhEETAJfIgMFCnAKM0KDV4EEEAQLiF18TAYNXDaSe3x6mjidN1s3IQAh+QQACgACACwAAAAAEAAQAAAFeCAgAgLZDGU5jgRECEUiCI+yioSDwDJyLKsXoHFQxBSHAoAAFBhqtMJg8DgQBgfrEsJAEAg4YhZIEiwgKtHiMBgtpg3wbUZXGO7kOb1MUKRFMysCChAoggJCIg0GC2aNe4gqQldfL4l/Ag1AXySJgn5LcoE3QXI3IQAh+QQACgADACwAAAAAEAAQAAAFdiAgAgLZNGU5joQhCEjxIssqEo8bC9BRjy9Ag7GILQ4QEoE0gBAEBcOpcBA0DoxSK/e8LRIHn+i1cK0IyKdg0VAoljYIg+GgnRrwVS/8IAkICyosBIQpBAMoKy9dImxPhS+GKkFrkX+TigtLlIyKXUF+NjagNiEAIfkEAAoABAAsAAAAABAAEAAABWwgIAICaRhlOY4EIgjH8R7LKhKHGwsMvb4AAy3WODBIBBKCsYA9TjuhDNDKEVSERezQEL0WrhXucRUQGuik7bFlngzqVW9LMl9XWvLdjFaJtDFqZ1cEZUB0dUgvL3dgP4WJZn4jkomWNpSTIyEAIfkEAAoABQAsAAAAABAAEAAABX4gIAICuSxlOY6CIgiD8RrEKgqGOwxwUrMlAoSwIzAGpJpgoSDAGifDY5kopBYDlEpAQBwevxfBtRIUGi8xwWkDNBCIwmC9Vq0aiQQDQuK+VgQPDXV9hCJjBwcFYU5pLwwHXQcMKSmNLQcIAExlbH8JBwttaX0ABAcNbWVbKyEAIfkEAAoABgAsAAAAABAAEAAABXkgIAICSRBlOY7CIghN8zbEKsKoIjdFzZaEgUBHKChMJtRwcWpAWoWnifm6ESAMhO8lQK0EEAV3rFopIBCEcGwDKAqPh4HUrY4ICHH1dSoTFgcHUiZjBhAJB2AHDykpKAwHAwdzf19KkASIPl9cDgcnDkdtNwiMJCshACH5BAAKAAcALAAAAAAQABAAAAV3ICACAkkQZTmOAiosiyAoxCq+KPxCNVsSMRgBsiClWrLTSWFoIQZHl6pleBh6suxKMIhlvzbAwkBWfFWrBQTxNLq2RG2yhSUkDs2b63AYDAoJXAcFRwADeAkJDX0AQCsEfAQMDAIPBz0rCgcxky0JRWE1AmwpKyEAIfkEAAoACAAsAAAAABAAEAAABXkgIAICKZzkqJ4nQZxLqZKv4NqNLKK2/Q4Ek4lFXChsg5ypJjs1II3gEDUSRInEGYAw6B6zM4JhrDAtEosVkLUtHA7RHaHAGJQEjsODcEg0FBAFVgkQJQ1pAwcDDw8KcFtSInwJAowCCA6RIwqZAgkPNgVpWndjdyohACH5BAAKAAkALAAAAAAQABAAAAV5ICACAimc5KieLEuUKvm2xAKLqDCfC2GaO9eL0LABWTiBYmA06W6kHgvCqEJiAIJiu3gcvgUsscHUERm+kaCxyxa+zRPk0SgJEgfIvbAdIAQLCAYlCj4DBw0IBQsMCjIqBAcPAooCBg9pKgsJLwUFOhCZKyQDA3YqIQAh+QQACgAKACwAAAAAEAAQAAAFdSAgAgIpnOSonmxbqiThCrJKEHFbo8JxDDOZYFFb+A41E4H4OhkOipXwBElYITDAckFEOBgMQ3arkMkUBdxIUGZpEb7kaQBRlASPg0FQQHAbEEMGDSVEAA1QBhAED1E0NgwFAooCDWljaQIQCE5qMHcNhCkjIQAh+QQACgALACwAAAAAEAAQAAAFeSAgAgIpnOSoLgxxvqgKLEcCC65KEAByKK8cSpA4DAiHQ/DkKhGKh4ZCtCyZGo6F6iYYPAqFgYy02xkSaLEMV34tELyRYNEsCQyHlvWkGCzsPgMCEAY7Cg04Uk48LAsDhRA8MVQPEF0GAgqYYwSRlycNcWskCkApIyEAOwAAAAAAAAAAAA==);background-position:right 5px center;background-repeat:no-repeat;background-color:#fff}div.form-error{background-color:#f2dede;padding:15px;margin-bottom:20px;border:#b94a48 1px solid;border-radius:4px}div.form-error strong{font-weight:700;display:block;margin:0;padding:0 0 10px}div.form-error strong,div.form-error ul li{line-height:140%;color:#b94a48;font-family:helvetica neue,Helvetica,Arial,sans-serif;font-size:14px}div.form-error ul,div.form-error ul li{background:0 0}.grecaptcha-badge{margin:0}.g-recaptcha-container{display:flex;flex-direction:column;justify-content:center}.g-recaptcha-container .filler{display:none}.g-recaptcha.btn{height:38px;margin-top:11px}.generic-success,.generic-error,.captcha-error{margin-bottom:10px}form .should-fade{transition:all .2s ease-in-out;opacity:1}form.success .should-fade{opacity:.2}form #generic-success{transition:all .2s ease-in-out;position:absolute;left:-.25rem;top:-1rem;width:calc(100% + .5rem);height:calc(100% + 2rem);border-radius:5px;z-index:100;display:flex;opacity:1;visibility:visible;flex-direction:column;align-items:center;justify-content:center;font-weight:700}form #generic-success.hidden{opacity:0;visibility:hidden}@media screen and (min-width:768px){.grecaptcha-badge{margin-bottom:0}.g-recaptcha-container{flex-direction:row;justify-content:space-between}.g-recaptcha-container .filler,.g-recaptcha-filler{display:block;width:256px}}.portfolio-item{height:100%;min-height:180px;display:flex;justify-content:center;align-items:center}.portfolio-item .badge-container .badge{background-color:rgba(52,58,64,.5)}.portfolio-item .description{background-color:rgba(52,58,64,.6);transition:all .2s ease-in-out}.portfolio-item .description-container{bottom:8px;left:8px;width:calc(100% - 16px)}.portfolio-item .description .title{font-weight:700}.portfolio-item *{cursor:pointer}.portfolio-item .hover-overlay{bottom:8px;left:16px;width:calc(100% - 16px);height:32px;border-radius:4;transition:all .2s ease-in-out}.portfolio-item:hover .description{background:transparent}.portfolio-item:hover .badge-container .badge{background-color:transparent}.portfolio-item:hover .hover-overlay{bottom:0;left:0;width:100%;height:100%;border-radius:0;background-color:rgba(52,58,64,.6)}.pricing-plan{display:flex}.pricing-plan .card{flex:1 0 auto;max-width:100%;overflow:hidden}.pricing-plan .card-header{height:125px;display:flex;flex-direction:column;justify-content:center}@media(min-width:768px){.pricing-plan-highlight{margin:-20px -10px 0}.pricing-plan-highlight .card-header{height:145px}}@media(max-width:991.98px){.pricing-plan-highlight{order:-1}}.pricing-plan .card-body{display:flex;flex-direction:column;flex:1 0 auto}.pricing-plan .card-body .features{display:flex;flex-direction:column;flex:1 0 auto}.pricing-plan .card-body p{margin-bottom:0}.pricing-plan .card-body p i{color:#28a745;margin-right:10px}.submit-price-display{margin-left:5px}body.modal-open{padding-right:15px}.modal{position:fixed;top:0;left:0;height:100vh;width:100vw;background-color:rgba(0,0,0,.8);z-index:10000;display:flex;justify-content:center;align-items:center;transition:all .2s ease-in-out}.modal-header button:focus{outline:none}.modal-dialog{box-shadow:2px 2px 6px rgba(52,58,64,.4);width:400px;transition:all .2s ease-in-out}.modal-dialog.md{width:600px}.modal-dialog.lg{width:800px}.modal .icon-container{font-size:64px}.modal .icon-container .fa-stack-1x,.modal .icon-container .fa-stack-2x{position:relative}.modal .badge-container{color:#f8f9fa;margin-bottom:1rem}.modal:not(.show){opacity:0;visibility:hidden}.modal:not(.show).modal-dialog{transform:translateY(-64px)}.search-results-container{position:absolute;right:0;top:calc(100% + 11px);width:400px;background-color:#fff;box-shadow:1px 1px 10px rgba(0,0,0,.2);border-radius:0 0 5px 5px;z-index:5000;display:none}.search-results-container.show{display:block}.search-results-container .result,.search-results-full-container .result{cursor:pointer;text-decoration:inherit}.search-results-container .result p,.search-results-full-container .result p{text-decoration:none!important}.search-results-container .result div:hover,.search-results-full-container .result div:hover{background-color:rgba(0,100,0,.2)}.search-results-container .result div:hover h5,.search-results-full-container .result div:hover h5{text-decoration:underline!important}.toc{margin-top:.5rem}.toc ul{list-style:none;padding-left:1rem;margin-bottom:.5rem}.nav-link{color:rgba(0,0,0,.5)}.nav-link:hover,.nav-link:focus{color:rgba(0,0,0,.7)}.nav-link.disabled{color:rgba(0,0,0,.3)}.fragment.bg-primary a:not(.nav-link):not(.ignore-color-change),.fragment.bg-primary .search-results-container .result h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active),.search-results-container .result .fragment.bg-primary h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active),.fragment.bg-primary .search-results-full-container .result h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active),.search-results-full-container .result .fragment.bg-primary h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active),.fragment .bg-primary a:not(.nav-link):not(.ignore-color-change),.fragment .bg-primary .search-results-container .result h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active),.search-results-container .result .fragment .bg-primary h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active),.fragment .bg-primary .search-results-full-container .result h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active),.search-results-full-container .result .fragment .bg-primary h5:not(.nav-link):not(.ignore-color-change):not(:hover):not(:active){color:#f8f9fa}.fragment.bg-primary a:not(.nav-link):not(.ignore-color-change):hover,.fragment.bg-primary .search-results-container .result h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-container .result .fragment.bg-primary h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active),.fragment.bg-primary .search-results-full-container .result h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-full-container .result .fragment.bg-primary h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active),.fragment .bg-primary a:not(.nav-link):not(.ignore-color-change):hover,.fragment .bg-primary .search-results-container .result h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-container .result .fragment .bg-primary h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active),.fragment .bg-primary .search-results-full-container .result h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-full-container .result .fragment .bg-primary h5:not(.nav-link):not(.ignore-color-change):hover:not(:hover):not(:active){color:#cbd3da}.fragment.bg-dark .nav-link,.fragment .bg-dark .nav-link{color:rgba(255,255,255,.5)}.fragment.bg-dark .nav-link:hover,.fragment.bg-dark .nav-link:focus,.fragment .bg-dark .nav-link:hover,.fragment .bg-dark .nav-link:focus{color:rgba(255,255,255,.75)}.fragment.bg-dark .nav-link.disabled,.fragment .bg-dark .nav-link.disabled{color:rgba(255,255,255,.25)}.fragment.bg-dark a:not(.ignore-color-change):hover,.fragment.bg-dark .search-results-container .result h5:not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-container .result .fragment.bg-dark h5:not(.ignore-color-change):hover:not(:hover):not(:active),.fragment.bg-dark .search-results-full-container .result h5:not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-full-container .result .fragment.bg-dark h5:not(.ignore-color-change):hover:not(:hover):not(:active),.fragment .bg-dark a:not(.ignore-color-change):hover,.fragment .bg-dark .search-results-container .result h5:not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-container .result .fragment .bg-dark h5:not(.ignore-color-change):hover:not(:hover):not(:active),.fragment .bg-dark .search-results-full-container .result h5:not(.ignore-color-change):hover:not(:hover):not(:active),.search-results-full-container .result .fragment .bg-dark h5:not(.ignore-color-change):hover:not(:hover):not(:active){color:#cbd3da}.jumbotron{border-radius:0!important}.overlay{position:relative;z-index:100}.scroll-to-top{position:fixed;right:32px;bottom:32px;width:32px;height:32px;border-radius:4px;display:flex;justify-content:center;align-items:center;color:#fff;font-size:16px;cursor:pointer;transition:all .2s ease;z-index:999}.scroll-to-top.has-font-icon{font-size:24px}.scroll-to-top.d-none{display:flex!important;visibility:hidden;opacity:0}[data-portal]{padding-bottom:1px;box-sizing:border-box}article .content img{max-width:100%}.content-sidebar{word-break:break-word;overflow-y:auto}.items .header{flex:0 1 160px}.items .image{flex:1}.items .image a,.items .image .search-results-container .result h5:not(:hover):not(:active),.search-results-container .result .items .image h5:not(:hover):not(:active),.items .image .search-results-full-container .result h5:not(:hover):not(:active),.search-results-full-container .result .items .image h5:not(:hover):not(:active){display:contents}pre{padding:.75rem}section .bg-dark code,section .bg-dark pre{background-color:#f8f9fa;color:#343a40}section .bg-dark p code{padding:3px 4px 2px}section .bg-secondary code,section .bg-secondary pre{background-color:#f8f9fa;color:#343a40}section .bg-secondary p code{padding:3px 4px 2px}section .bg-#fff code,section .bg-#fff pre{background-color:#343a40;color:#f8f9fa}section .bg-#fff p code{padding:3px 4px 2px}section .bg-primary code,section .bg-primary pre{background-color:#343a40;color:#f8f9fa}section .bg-primary p code{padding:3px 4px 2px}section .bg-success code,section .bg-success pre{background-color:#343a40;color:#f8f9fa}section .bg-success p code{padding:3px 4px 2px}section .bg-info code,section .bg-info pre{background-color:#343a40;color:#f8f9fa}section .bg-info p code{padding:3px 4px 2px}section .bg-warning code,section .bg-warning pre{background-color:#343a40;color:#f8f9fa}section .bg-warning p code{padding:3px 4px 2px}section .bg-danger code,section .bg-danger pre{background-color:#343a40;color:#f8f9fa}section .bg-danger p code{padding:3px 4px 2px}section .bg-light code,section .bg-light pre{background-color:#343a40;color:#f8f9fa}section .bg-light p code{padding:3px 4px 2px}.faq .collapse,.list .collapse{display:block;height:auto;max-height:0;overflow:hidden;transition:all .6s ease-out}.faq .collapse.show,.list .collapse.show{max-height:1000px;transition:all .6s ease-in}.badge-container{top:8px;left:8px;display:flex;width:calc(100% - 16px)}.badge-container .badge{margin-right:8px;transition:all .2s ease-in-out}.badge-container .badge [class*=fa-]{margin-right:2px}.btn-group-toggle label.btn{position:relative}.btn-group-toggle label.btn input{position:absolute;width:100%;height:100%;top:0;left:0;opacity:0}.currency-change{display:flex;align-items:center;justify-content:space-between;padding-left:1rem;padding-right:1rem}.currency-change,.currency-menu{min-width:4.5rem;width:4.5rem}#TableOfContents a.active,#TableOfContents .search-results-container .result h5.active:not(:hover):not(:active),.search-results-container .result #TableOfContents h5.active:not(:hover):not(:active),#TableOfContents .search-results-full-container .result h5.active:not(:hover):not(:active),.search-results-full-container .result #TableOfContents h5.active:not(:hover):not(:active),.active-page{font-weight:700} \ No newline at end of file diff --git a/resources/_gen/assets/scss/styles/index.scss_a4e369375f17bb89f2019364cbe7a830.json b/resources/_gen/assets/scss/styles/index.scss_a4e369375f17bb89f2019364cbe7a830.json deleted file mode 100644 index 510031f8..00000000 --- a/resources/_gen/assets/scss/styles/index.scss_a4e369375f17bb89f2019364cbe7a830.json +++ /dev/null @@ -1 +0,0 @@ -{"Target":"style.min.802145193e04028b94aef5fb0f0243cf6329afed0c50ec93627868a4a31c6183.css","MediaType":"text/css","Data":{"Integrity":"sha256-gCFFGT4EAouUrvX7DwJDz2Mpr+0MUOyTYnhopKMcYYM="}} \ No newline at end of file diff --git a/static/documents/Engagement_Plan_2021.pdf b/static/documents/Engagement_Plan_2021.pdf deleted file mode 100644 index 3b11066d..00000000 Binary files a/static/documents/Engagement_Plan_2021.pdf and /dev/null differ diff --git a/static/documents/Strategic_Plan_2021-23.pdf b/static/documents/Strategic_Plan_2021-23.pdf deleted file mode 100644 index 014601bd..00000000 Binary files a/static/documents/Strategic_Plan_2021-23.pdf and /dev/null differ diff --git a/static/documents/people-roadmap.pdf b/static/documents/people-roadmap.pdf deleted file mode 100644 index d29cbc94..00000000 Binary files a/static/documents/people-roadmap.pdf and /dev/null differ diff --git a/static/documents/readme.md b/static/documents/readme.md deleted file mode 100644 index 86f53855..00000000 --- a/static/documents/readme.md +++ /dev/null @@ -1 +0,0 @@ -Research Software Alliance Public documents diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png deleted file mode 100644 index 2ae406d7..00000000 Binary files a/static/favicon-16x16.png and /dev/null differ diff --git a/static/favicon-180x180.png b/static/favicon-180x180.png deleted file mode 100644 index 205e45a4..00000000 Binary files a/static/favicon-180x180.png and /dev/null differ diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png deleted file mode 100644 index e58e7b88..00000000 Binary files a/static/favicon-32x32.png and /dev/null differ diff --git a/static/favicon-64x64.png b/static/favicon-64x64.png deleted file mode 100644 index 9258b266..00000000 Binary files a/static/favicon-64x64.png and /dev/null differ diff --git a/static/favicon.ico b/static/favicon.ico deleted file mode 100644 index 9258b266..00000000 Binary files a/static/favicon.ico and /dev/null differ diff --git a/static/images/ASAP_FullColor_2.png b/static/images/ASAP_FullColor_2.png deleted file mode 100644 index 8cad557e..00000000 Binary files a/static/images/ASAP_FullColor_2.png and /dev/null differ diff --git a/static/images/ASAP_Logo_FullColor_RGB.jpg b/static/images/ASAP_Logo_FullColor_RGB.jpg deleted file mode 100644 index 78721c20..00000000 Binary files a/static/images/ASAP_Logo_FullColor_RGB.jpg and /dev/null differ diff --git a/static/images/BrownC_Titus14516.jpg b/static/images/BrownC_Titus14516.jpg deleted file mode 100644 index 832ff2ef..00000000 Binary files a/static/images/BrownC_Titus14516.jpg and /dev/null differ diff --git a/static/images/CZI.png b/static/images/CZI.png deleted file mode 100644 index 94014af8..00000000 Binary files a/static/images/CZI.png and /dev/null differ diff --git a/static/images/NeilChueHong_0-150x150.jpg b/static/images/NeilChueHong_0-150x150.jpg deleted file mode 100644 index 7d6f6676..00000000 Binary files a/static/images/NeilChueHong_0-150x150.jpg and /dev/null differ diff --git a/static/images/ReSAFoundingMembersSquare.jpg b/static/images/ReSAFoundingMembersSquare.jpg deleted file mode 100644 index bca8f576..00000000 Binary files a/static/images/ReSAFoundingMembersSquare.jpg and /dev/null differ diff --git a/static/images/Simons Foundation Logo_blue.eps b/static/images/Simons Foundation Logo_blue.eps deleted file mode 100644 index f4432fce..00000000 Binary files a/static/images/Simons Foundation Logo_blue.eps and /dev/null differ diff --git a/static/images/Simons.png b/static/images/Simons.png deleted file mode 100644 index 935475f3..00000000 Binary files a/static/images/Simons.png and /dev/null differ diff --git a/static/images/Sloan-foundation-small.jpg b/static/images/Sloan-foundation-small.jpg deleted file mode 100644 index 11a245e5..00000000 Binary files a/static/images/Sloan-foundation-small.jpg and /dev/null differ diff --git a/static/images/VWST_RGB_150.gif b/static/images/VWST_RGB_150.gif deleted file mode 100644 index 472b5689..00000000 Binary files a/static/images/VWST_RGB_150.gif and /dev/null differ diff --git a/static/images/bigstock-209562745REDUCED.jpg b/static/images/bigstock-209562745REDUCED.jpg deleted file mode 100644 index dc74513b..00000000 Binary files a/static/images/bigstock-209562745REDUCED.jpg and /dev/null differ diff --git a/static/images/data-mining-500-380.png b/static/images/data-mining-500-380.png deleted file mode 100644 index 3359ff3f..00000000 Binary files a/static/images/data-mining-500-380.png and /dev/null differ diff --git a/static/images/data-mining-original.jpg b/static/images/data-mining-original.jpg deleted file mode 100644 index 949475d4..00000000 Binary files a/static/images/data-mining-original.jpg and /dev/null differ diff --git a/static/images/eden-constantino-OXmym9cuaEY-unsplash.jpg b/static/images/eden-constantino-OXmym9cuaEY-unsplash.jpg deleted file mode 100644 index 3bfbb962..00000000 Binary files a/static/images/eden-constantino-OXmym9cuaEY-unsplash.jpg and /dev/null differ diff --git a/static/images/ford-foundation-logo.jpg b/static/images/ford-foundation-logo.jpg deleted file mode 100644 index 385b5581..00000000 Binary files a/static/images/ford-foundation-logo.jpg and /dev/null differ diff --git a/static/images/moore-logo-color.jpg b/static/images/moore-logo-color.jpg deleted file mode 100644 index 72059bab..00000000 Binary files a/static/images/moore-logo-color.jpg and /dev/null differ diff --git a/static/images/programmer-hands-original.jpg b/static/images/programmer-hands-original.jpg deleted file mode 100644 index bfd748e2..00000000 Binary files a/static/images/programmer-hands-original.jpg and /dev/null differ diff --git a/static/images/resa-favicon.svg b/static/images/resa-favicon.svg deleted file mode 100644 index 7cce7c26..00000000 --- a/static/images/resa-favicon.svg +++ /dev/null @@ -1,78 +0,0 @@ - -image/svg+xml - - - - - - - - - - - diff --git a/static/images/sage_logo.png b/static/images/sage_logo.png deleted file mode 100644 index 5f4ca6e9..00000000 Binary files a/static/images/sage_logo.png and /dev/null differ diff --git a/static/images/wellcome-trust-logo.png b/static/images/wellcome-trust-logo.png deleted file mode 100644 index a329462b..00000000 Binary files a/static/images/wellcome-trust-logo.png and /dev/null differ diff --git a/static/images/young-people-original.jpg b/static/images/young-people-original.jpg deleted file mode 100644 index 264d3e9b..00000000 Binary files a/static/images/young-people-original.jpg and /dev/null differ diff --git a/static/uploads/.gitkeep b/static/uploads/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/static/uploads/logo.svg b/static/uploads/logo.svg new file mode 100644 index 00000000..689e07b2 --- /dev/null +++ b/static/uploads/logo.svg @@ -0,0 +1,167 @@ + +image/svg+xml + + + + + + + + + + + diff --git a/static/uploads/mentions.svg b/static/uploads/mentions.svg new file mode 100644 index 00000000..c74bf236 --- /dev/null +++ b/static/uploads/mentions.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/uploads/resa-logo-inverted.svg b/static/uploads/resa-logo-inverted.svg new file mode 100644 index 00000000..6bcf7c69 --- /dev/null +++ b/static/uploads/resa-logo-inverted.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/uploads/research.svg b/static/uploads/research.svg new file mode 100644 index 00000000..9f31356a --- /dev/null +++ b/static/uploads/research.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/uploads/software.svg b/static/uploads/software.svg new file mode 100644 index 00000000..68c7f292 --- /dev/null +++ b/static/uploads/software.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/images/programmer-hands-500-380.png b/static/uploads/theme-infrastructure.png similarity index 100% rename from static/images/programmer-hands-500-380.png rename to static/uploads/theme-infrastructure.png diff --git a/static/images/young-people-500-380.png b/static/uploads/theme-people.png similarity index 100% rename from static/images/young-people-500-380.png rename to static/uploads/theme-people.png diff --git a/static/images/writing-828911_1920.jpg b/static/uploads/theme-policies.jpg similarity index 100% rename from static/images/writing-828911_1920.jpg rename to static/uploads/theme-policies.jpg diff --git a/theme.toml b/theme.toml new file mode 100644 index 00000000..41259bdf --- /dev/null +++ b/theme.toml @@ -0,0 +1,41 @@ +name = "Research Group" +license = "MIT" +licenselink = "https://github.com/wowchemy/starter-hugo-research-group/blob/main/LICENSE.md" +description = "The **Research Group Template** empowers your research group to easily create a beautiful website with a stunning homepage, news, academic publications, events, team profiles, and a contact form." +homepage = "https://github.com/wowchemy/starter-hugo-research-group" +demosite = "https://research-group.netlify.app/" +tags = ["academic", + "university", + "research", + "publications", + "widgets", + "portfolio", + "responsive", + "clean", + "company", + "blog", + "events", + "minimal", + "light", + "dark", + "multilingual", + "landing page", + "contact form", + "mobile", + "search", + "presentation", + "simple", + "minimalist", + "starter", + "modern", + "one page", + "customizable", + "technical", + "slide" + ] +features = ["page builder", "widgets", "themes", "search", "research publication system", "filterable portfolio", + "blog", "create courses", "talks", "events", "slides", "gallery", "contact form"] + +[author] + name = "George Cushen" + homepage = "https://georgecushen.com" diff --git a/themes/syna b/themes/syna deleted file mode 160000 index ca1c4929..00000000 --- a/themes/syna +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ca1c4929f5cd3db0f4c856e5db90fa50fb51fc7f