diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 000000000..e69de29bb diff --git a/404.html b/404.html new file mode 100644 index 000000000..d411b936a --- /dev/null +++ b/404.html @@ -0,0 +1 @@ +Oops! Nothing here...

HTTP 404

Oops! Nothing here...

Maybe the webpage was moved or deleted; or did you maybe mistype the link?

No problem!

Try…
…to start over on the home page;
…to search below;
if you can’t find it, ask about it.

diff --git a/CITATION b/CITATION new file mode 100644 index 000000000..a2413086b --- /dev/null +++ b/CITATION @@ -0,0 +1,29 @@ +To reference Software Carpentry in publications, please cite: + +Greg Wilson: "Software Carpentry: Lessons Learned". F1000Research, +2016, 3:62 (doi: 10.12688/f1000research.3-62.v2). + +@online{wilson-software-carpentry-2016, + author = {Greg Wilson}, + title = {Software Carpentry: Lessons Learned}, + version = {2}, + date = {2016-01-28}, + url = {http://f1000research.com/articles/3-62/v2}, + doi = {10.12688/f1000research.3-62.v2} +} + +To reference HPC Carpentry in publications, please cite: + +Alan Ó Cais and Peter Steinbach: "Expanding user communities with HPC Carpentry". +The Journal of Computational Science Education. 11. 21-25. (doi: 10.22369/issn.2153-4136/11/1/4). + +@article{article, + author = {Cais, Alan and Steinbach, Peter}, + year = {2020}, + month = {01}, + pages = {21-25}, + title = {Expanding user communities with HPC Carpentry}, + volume = {11}, + journal = {The Journal of Computational Science Education}, + doi = {10.22369/issn.2153-4136/11/1/4} +} diff --git a/CNAME b/CNAME new file mode 100644 index 000000000..1879c45be --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +www.hpc-carpentry.org \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..62e98830e --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,153 @@ +# Contributing + +Like the official [Carpentries][c-site] sites---[Software +Carpentry][swc-site], [Data Carpentry][dc-site], and +[Library Carpentry][lc-site]---[HPC Carpentry][hpcc-site] +is an open source project, and we welcome +contributions of all kinds: blog posts, fixes to existing material, +bug reports, and reviews of proposed changes are all welcome. + +## Contributor Agreement + +By contributing, you agree that we may redistribute your work under +[our license](LICENSE). Everyone involved in +[HPC Carpentry][hpcc-site] agrees to abide by our +[code of conduct][conduct]. + +## How to Contribute a Fix or Suggested Change + +The easiest way to get started is to file an issue to tell us about a +spelling mistake, some awkward wording, or a factual error. This is +a good way to introduce yourself and to meet some of our community +members. + +1. If you do not have a [GitHub][github] account, you can send + comments to the [community email list][discuss-list]. + However, we will be able to respond more quickly if you use one of + the other methods described below. + +2. If you have a [GitHub][github] account, or are willing to + [create one][github-join], but do not know how to use Git, + you can report problems or suggest improvements by + [creating an issue][issues]. + This allows us to assign the item to someone and to respond + to it in a threaded discussion. + +3. If you are comfortable with Git, and would like to add or change + material, you can submit a pull request (PR). + +## Where to Contribute + +1. If you wish to change the website, please work in + , + which can be viewed at . + +2. If you wish to change CSS style files, tools, or HTML boilerplate + for lessons or workshops stored in `_includes` or `_layouts`, + please work in + (on which this website is based). + +## How to Contribute a Blog Post + +1. If you wish to contribute a blog post, please work in + , + which can be viewed at . + +2. Posts go in the `_posts` folder, which is divided up first by + year, e.g. `2018`, and then by month, e.g. `04`. Be sure to start + creating your file in the correct folder. + +3. Posts need to be created in [Markdown][md-guide] and named + according to this convention (all-lower-case filenames are + preferred): + + `YYYY-MM-DD-filename.md` + + e.g., + + `2017-07-10-assess_report.md` + +4. In order to render correctly, posts need to have a header block, + which should be [created like this example][hdr-block]: + + ```yaml + --- + layout: page + authors: ["Tracy Teal", "Maneesha Sane", "Belinda Weaver"] + title: "Launching our New Handbook" + teaser: "Find new pathways to a range of Carpentries material" + date: 2018-04-11 + time: "9:00:00" + tags: ["Communications"] + --- + ``` + + Separate the header block from the post proper by a new line. + You can leave the `time` field as-is or set it to a meaningful + value. Please make your best effort to accurately populate the + rest of the fields. + +5. If there is more than one author, separate the quoted author + names using commas, like this: + + ```yaml + ["Name 1", "Name 2"] + ``` + + Separate any tags the same way. + +6. Images should be uploaded to the appropriate year in the + `files//` folder. Images should be linked using + Markdown, and paths to the image should be relative. Example: + + ```markdown + ![Image Description]({{ site.filesurl }}/2017/07/myimage.jpg "alt text") + ``` + + A web link should be used for images hosted elsewhere. + Example: + + ```markdown + ![Image Description](https://web_address/pathway_to_full_image_filename) + ``` + + If you are not sure how to add images in Markdown format, + look at an existing Carpentries post with a + [locally hosted image][md-img-local] or + [one with a web link][md-img-remote] and copy the formatting + from there. + +7. Once you have previewed your file, commit the Markdown file to + your fork and start a Pull Request. We automatically run tests + using [GitHub Actions][actions] on your Pull Requests. Please + review your pull request a few minutes after you've submitted it + to make sure those tests have passed. These tests look for valid + YAML headers and make sure that the post will build properly. + +## Other Resources + +General discussion of [HPC Carpentry][hpcc-site] happens on the +[discussion mailing list][discuss-list], which everyone is welcome +to join. You can also [reach the maintainers by email][contact]. + + + +[actions]: https://github.com/hpc-carpentry/hpc-carpentry.github.io/actions +[conduct]: https://docs.carpentries.org/topic_folders/policies/code-of-conduct.html +[contact]: mailto:maintainers-hpc@lists.carpentries.org +[discuss-list]: https://carpentries.topicbox.com/groups/discuss-hpc +[issues]: https://github.com/hpc-carpentry/hpc-carpentry.github.io/issues/ +[hpcc-site]: https://www.hpc-carpentry.org + + + +[c-site]: https://carpentries.org +[dc-site]: https://datacarpentry.org/ +[github-join]: https://github.com/join +[github]: http://github.com +[hdr-block]: https://github.com/hpc-carpentry/hpc-carpentry.github.io/blob/967908bd97f2e30f34185ad98d575a9125754b01/_posts/2024/08/2024-08-13-llnl-workshop-blog-post.md?plain=1#L1 +[lc-site]: https://librarycarpentry.org/ +[md-guide]: https://guides.github.com/features/mastering-markdown/ +[md-img-local]: https://github.com/carpentries/carpentries.org/blob/5524366743246303aa1dd80343dd4759685b44e9/_posts/2017/06/2017-06-19-mqu-ttt.md?plain=1#L29 +[md-img-remote]: https://github.com/carpentries/carpentries.org/blob/5524366743246303aa1dd80343dd4759685b44e9/_posts/2017/07/2017-07-10-assess_report.md?plain=1#L24 +[swc-site]: http://software-carpentry.org/ diff --git a/about/index.html b/about/index.html new file mode 100644 index 000000000..9ec584dc5 --- /dev/null +++ b/about/index.html @@ -0,0 +1 @@ +About Us

About Us

HPC Carpentry operates in the spirit of The Carpentries but we are not (currently) an official program of The Carpentries. We do try to inherit some of the best practices and effort of The Carpentries, which is clearly reflected in things like our Code of Conduct (and how we created this website!).

Vision: Our vision is to be the leading inclusive community teaching data and coding skills for HPC resources.

Mission: Lower the barrier to entry to HPC operations for a wide range of users, so that more people can benefit from the increasing availability of increasingly sophisticated computer systems.

Strategy: Our path to achieving this goal includes developing and aggregating relevant resources, and working closely with like-minded communities.

  • Take advantage of Carpentries open-source and pedagogical standards, so that our material continuously improves.
  • Develop workshops suitable for integration into the existing Carpentries workflow, to allow
    • An “HPC Users” workshop, starting with the Unix Shell and HPC Intro lessons, and following up with example of the of a workflow tool to execute a scaling study oon an HPC system, including demonstrating the limitations of parallelism. This workflow lesson is HPC Workflows.
    • An “HPC Developers” workshop, also starting with Unix Shell and HPC Intro lessons, with follow-up lessons, not yet developed, covering how to construct applications for HPC systems.
  • Collect, develop, and organize related material that doesn’t fit into the workshop framework, making it easy to find for interested developers.
diff --git a/apt_cache/archives/attr_1%3a2.5.2-1build1_amd64.deb b/apt_cache/archives/attr_1%3a2.5.2-1build1_amd64.deb new file mode 100644 index 000000000..0ecbd7aa8 Binary files /dev/null and b/apt_cache/archives/attr_1%3a2.5.2-1build1_amd64.deb differ diff --git a/apt_cache/archives/autofs_5.1.9-1ubuntu4_amd64.deb b/apt_cache/archives/autofs_5.1.9-1ubuntu4_amd64.deb new file mode 100644 index 000000000..42cfb2127 Binary files /dev/null and b/apt_cache/archives/autofs_5.1.9-1ubuntu4_amd64.deb differ diff --git a/apt_cache/archives/cvmfs-config-default_2.0-1_all.deb b/apt_cache/archives/cvmfs-config-default_2.0-1_all.deb new file mode 100644 index 000000000..13c7a0918 Binary files /dev/null and b/apt_cache/archives/cvmfs-config-default_2.0-1_all.deb differ diff --git a/apt_cache/archives/cvmfs-fuse3_2.11.5~1+ubuntu24.04_amd64.deb b/apt_cache/archives/cvmfs-fuse3_2.11.5~1+ubuntu24.04_amd64.deb new file mode 100644 index 000000000..d45f156d3 Binary files /dev/null and b/apt_cache/archives/cvmfs-fuse3_2.11.5~1+ubuntu24.04_amd64.deb differ diff --git a/apt_cache/archives/cvmfs-libs_2.11.5~1+ubuntu24.04_amd64.deb b/apt_cache/archives/cvmfs-libs_2.11.5~1+ubuntu24.04_amd64.deb new file mode 100644 index 000000000..8eedab543 Binary files /dev/null and b/apt_cache/archives/cvmfs-libs_2.11.5~1+ubuntu24.04_amd64.deb differ diff --git a/apt_cache/archives/cvmfs-release-latest_all.deb b/apt_cache/archives/cvmfs-release-latest_all.deb new file mode 100644 index 000000000..bdf700946 Binary files /dev/null and b/apt_cache/archives/cvmfs-release-latest_all.deb differ diff --git a/apt_cache/archives/cvmfs_2.11.5~1+ubuntu24.04_amd64.deb b/apt_cache/archives/cvmfs_2.11.5~1+ubuntu24.04_amd64.deb new file mode 100644 index 000000000..ee8d1e1f2 Binary files /dev/null and b/apt_cache/archives/cvmfs_2.11.5~1+ubuntu24.04_amd64.deb differ diff --git a/apt_cache/archives/gdb_15.0.50.20240403-0ubuntu1_amd64.deb b/apt_cache/archives/gdb_15.0.50.20240403-0ubuntu1_amd64.deb new file mode 100644 index 000000000..38ca69def Binary files /dev/null and b/apt_cache/archives/gdb_15.0.50.20240403-0ubuntu1_amd64.deb differ diff --git a/apt_cache/archives/libbabeltrace1_1.5.11-3build3_amd64.deb b/apt_cache/archives/libbabeltrace1_1.5.11-3build3_amd64.deb new file mode 100644 index 000000000..96adad2db Binary files /dev/null and b/apt_cache/archives/libbabeltrace1_1.5.11-3build3_amd64.deb differ diff --git a/apt_cache/archives/libc6-dbg_2.39-0ubuntu8.3_amd64.deb b/apt_cache/archives/libc6-dbg_2.39-0ubuntu8.3_amd64.deb new file mode 100644 index 000000000..3044d959a Binary files /dev/null and b/apt_cache/archives/libc6-dbg_2.39-0ubuntu8.3_amd64.deb differ diff --git a/apt_cache/archives/libdebuginfod-common_0.190-1.1build4_all.deb b/apt_cache/archives/libdebuginfod-common_0.190-1.1build4_all.deb new file mode 100644 index 000000000..66d0a124b Binary files /dev/null and b/apt_cache/archives/libdebuginfod-common_0.190-1.1build4_all.deb differ diff --git a/apt_cache/archives/libdebuginfod1t64_0.190-1.1build4_amd64.deb b/apt_cache/archives/libdebuginfod1t64_0.190-1.1build4_amd64.deb new file mode 100644 index 000000000..56730a6bc Binary files /dev/null and b/apt_cache/archives/libdebuginfod1t64_0.190-1.1build4_amd64.deb differ diff --git a/apt_cache/archives/libfuse2t64_2.9.9-8.1build1_amd64.deb b/apt_cache/archives/libfuse2t64_2.9.9-8.1build1_amd64.deb new file mode 100644 index 000000000..581c0c401 Binary files /dev/null and b/apt_cache/archives/libfuse2t64_2.9.9-8.1build1_amd64.deb differ diff --git a/apt_cache/archives/libipt2_2.0.6-1build1_amd64.deb b/apt_cache/archives/libipt2_2.0.6-1build1_amd64.deb new file mode 100644 index 000000000..92f55d326 Binary files /dev/null and b/apt_cache/archives/libipt2_2.0.6-1build1_amd64.deb differ diff --git a/apt_cache/archives/libnfsidmap1_1%3a2.6.4-3ubuntu5_amd64.deb b/apt_cache/archives/libnfsidmap1_1%3a2.6.4-3ubuntu5_amd64.deb new file mode 100644 index 000000000..30263de71 Binary files /dev/null and b/apt_cache/archives/libnfsidmap1_1%3a2.6.4-3ubuntu5_amd64.deb differ diff --git a/apt_cache/archives/libnsl2_1.3.0-3build3_amd64.deb b/apt_cache/archives/libnsl2_1.3.0-3build3_amd64.deb new file mode 100644 index 000000000..ee0d6f73b Binary files /dev/null and b/apt_cache/archives/libnsl2_1.3.0-3build3_amd64.deb differ diff --git a/apt_cache/archives/libossp-uuid16_1.6.2-1.5build13_amd64.deb b/apt_cache/archives/libossp-uuid16_1.6.2-1.5build13_amd64.deb new file mode 100644 index 000000000..e62fc6528 Binary files /dev/null and b/apt_cache/archives/libossp-uuid16_1.6.2-1.5build13_amd64.deb differ diff --git a/apt_cache/archives/libsource-highlight-common_3.1.9-4.3build1_all.deb b/apt_cache/archives/libsource-highlight-common_3.1.9-4.3build1_all.deb new file mode 100644 index 000000000..784de6e51 Binary files /dev/null and b/apt_cache/archives/libsource-highlight-common_3.1.9-4.3build1_all.deb differ diff --git a/apt_cache/archives/libsource-highlight4t64_3.1.9-4.3build1_amd64.deb b/apt_cache/archives/libsource-highlight4t64_3.1.9-4.3build1_amd64.deb new file mode 100644 index 000000000..137c38dfe Binary files /dev/null and b/apt_cache/archives/libsource-highlight4t64_3.1.9-4.3build1_amd64.deb differ diff --git a/apt_cache/archives/nfs-common_1%3a2.6.4-3ubuntu5_amd64.deb b/apt_cache/archives/nfs-common_1%3a2.6.4-3ubuntu5_amd64.deb new file mode 100644 index 000000000..5fc24aeb9 Binary files /dev/null and b/apt_cache/archives/nfs-common_1%3a2.6.4-3ubuntu5_amd64.deb differ diff --git a/apt_cache/archives/rpcbind_1.2.6-7ubuntu2_amd64.deb b/apt_cache/archives/rpcbind_1.2.6-7ubuntu2_amd64.deb new file mode 100644 index 000000000..0c9d59322 Binary files /dev/null and b/apt_cache/archives/rpcbind_1.2.6-7ubuntu2_amd64.deb differ diff --git a/apt_cache/archives/uuid-dev_2.39.3-9ubuntu6.1_amd64.deb b/apt_cache/archives/uuid-dev_2.39.3-9ubuntu6.1_amd64.deb new file mode 100644 index 000000000..7f6e4fd81 Binary files /dev/null and b/apt_cache/archives/uuid-dev_2.39.3-9ubuntu6.1_amd64.deb differ diff --git a/apt_cache/archives/uuid_1.6.2-1.5build13_amd64.deb b/apt_cache/archives/uuid_1.6.2-1.5build13_amd64.deb new file mode 100644 index 000000000..efb3a3345 Binary files /dev/null and b/apt_cache/archives/uuid_1.6.2-1.5build13_amd64.deb differ diff --git a/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_noble-prod_Release b/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_noble-prod_Release new file mode 100644 index 000000000..af938d3bf --- /dev/null +++ b/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_noble-prod_Release @@ -0,0 +1,37 @@ +Version: 7.0 +Codename: noble-prod +Components: main +Origin: CERN +Label: CernVM +Architectures: amd64 arm64 +Date: Mon, 16 Dec 2024 22:30:21 +0000 +MD5Sum: + b57bcdd757510986088ceeb9e36cdab7 2498 main/list.html + 5fd3e73068a25c78554d3a2148e8d375 2582 main/binary-arm64/list.html + 1dbb6932112183de46ab5fc0233cab72 1626 main/binary-arm64/Packages.gz + a78c4bfe7b871d35da60d12016856c98 4681 main/binary-arm64/Packages + 19337198e2f3570f91fa9a0b18e191eb 1755 main/binary-arm64/Packages.bz2 + eac2017817ea8a2a9ff29519fa04da0f 2582 main/binary-amd64/list.html + 9f94dc94a708146f7dd0a5332104d136 1808 main/binary-amd64/Packages.gz + bd1a9decb0d4e944f220b97421895b14 5329 main/binary-amd64/Packages + f2957418bcfb877e81f677ec731b5fe8 1914 main/binary-amd64/Packages.bz2 +SHA1: + 65e440df30c62ab3fe9ee9da328f78cce09a7294 2498 main/list.html + ddbd4ff5035ec549a57ab8a5cb1f28b114db5668 2582 main/binary-arm64/list.html + bb59dd28aa731a74f1e4d9b2d11fc707433d6a0b 1626 main/binary-arm64/Packages.gz + f3c350132058e756861728616477551d25debc76 4681 main/binary-arm64/Packages + 90fdee03a52397f2c31e9e1e962fcc7f9595ac54 1755 main/binary-arm64/Packages.bz2 + 118e472311c2647c0f4782a95649574efd0a4511 2582 main/binary-amd64/list.html + 579413e994a8fc945ea23ad72288ae81217dcbcc 1808 main/binary-amd64/Packages.gz + 6aed2bf3a78b6d05fad7e3643863884014d43b6e 5329 main/binary-amd64/Packages + 6f080fb162a528729f0d3c4e1a22fbe01ad454cb 1914 main/binary-amd64/Packages.bz2 +SHA256: + 108421b21a8b31a7725fb1322333d66181dafc7a21e08f77bdba8d38e5e8b5eb 2498 main/list.html + 3fffb97a00e32eb70757edc33029425d814374738b10fbb5083e4ed5fc1ac6d2 2582 main/binary-arm64/list.html + a81cf501083727699540a60f98f38d1f2b016333a58a4e4d2bf41c45bca44bd0 1626 main/binary-arm64/Packages.gz + d72f5bb88cb0359d0145154614d074c79bb663efd44e0df082447770a1faf683 4681 main/binary-arm64/Packages + e867ccf413e1fcac1a8be96abfb3484dfd357579890fe072c20f7911ac00953d 1755 main/binary-arm64/Packages.bz2 + 662e7ed41e6a36c8aeaa984272c854313d63d636cb44d2c26fb74fff3341c09a 2582 main/binary-amd64/list.html + ba6525475332a7c765df7a36a22facffb2c47f47b74e39609b93c5593b049330 1808 main/binary-amd64/Packages.gz + 1763652948317507ffeec4df8515d5c52fd0cde833fa65afee1ffd10599068f3 5329 main/binary-amd64/Packages + fae5b5e99bf5e39a224b378ecb2ac0715e9527643e3f18462c018e57eae7b682 1914 main/binary-amd64/Packages.bz2 diff --git a/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_noble-prod_Release.gpg b/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_noble-prod_Release.gpg new file mode 100644 index 000000000..d80a41c65 --- /dev/null +++ b/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_noble-prod_Release.gpg @@ -0,0 +1,18 @@ +-----BEGIN PGP SIGNATURE----- + +iF0EABEIAB0WIQRwuYkEiCCOMV7UUggjDTidiuRc5wUCZ2GRfQAKCRAjDTidiuRc +5zrsAJ9NLTfQLmvr65VdsqyOlb+QhHcyRwCfTmRnPIlcP59N/nvLUWUYSBEozoKJ +AjMEAAEIAB0WIQT9gEaNSbOyTDQXQfyM4KdsSX6pVwUCZ2GRfQAKCRCM4KdsSX6p +V4AxD/9vc0dPK93ZDKCsirusbBSkVBOTiOMJ8hQTgAybtahBW0INhbOTURQkgnxy +pFqp4vmCfdiyuBi0TNgWegXoQhWXbmsKNOlktB6gSFRvlzkAYWKXjHJFDJntHogD +ud705mFJWpHnIdekwI5zycZZmaHSqijuu2f9UdA1YtvtzPms2zqTcsNDwNhFckM5 +ZZh4VYREGHbJdoFkr1R24RBZ6bVjyl1xIeVYiDTdwm3YOX51CqhbH/6yfs5B8ORA +YUefZSAulR11pZD3/bL9H2VL+0LJjG4IcqZ0foTvhjr4TBJ5uizMyD/s7rGv3QKc +bCFl19GjAE7iQ458TtNwo2aOu8clEan9Vgq1wUnbNzqH389qA8IlQxuzU8KtgK/f +2ii1Bj+gkC3Ogd2nerg5nIYU+3T7jwlT+IhuYTW35BJ7D8CtNg6eiV9cqqNlBiLQ +x/iGtqBI8Nt0QthJRKOGWoMnkEz4IwkTt34+6q0wXbr7HbnEYiybxZB8x0tPUHN1 +k4uydsJR/wM+80LZAqxKzsBPgQnzNIeN4fQnUW62VpPGrU/mb3m0wnBUVK2CSfwW +KKo2o75qlVYGLbiEheN9yA8Yo8tNEMiNbe3Y+hKsshkHRlZWAk4jpjiptWY35srW +T02ULZz/0hzy3FALjNAUfHKNwry4WBVVt1h6+3iWJSUkbOXBQA== +=OV72 +-----END PGP SIGNATURE----- diff --git a/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_noble-prod_main_binary-amd64_Packages b/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_noble-prod_main_binary-amd64_Packages new file mode 100644 index 000000000..b58bd6f7d --- /dev/null +++ b/apt_cache/lists/cvmrepo.s3.cern.ch_cvmrepo_apt_dists_noble-prod_main_binary-amd64_Packages @@ -0,0 +1,148 @@ +Package: cvmfs +Version: 2.11.5~1+ubuntu24.04 +Architecture: amd64 +Maintainer: Jakob Blomer +Installed-Size: 49487 +Depends: cvmfs-config-default | cvmfs-config, gawk, psmisc, lsof, autofs, fuse, curl, attr, libfuse2, zlib1g, gdb, uuid-dev, uuid, adduser, cvmfs-libs (= 2.11.5~1+ubuntu24.04) +Recommends: cvmfs-fuse3, autofs (>= 5.1.2) +Filename: pool/noble-prod/main/cvmfs_2.11.5~1+ubuntu24.04_amd64.deb +Size: 14422908 +MD5sum: ab9e1c304292170910927874884a0923 +SHA1: 06fd30b7cc9f2482586801bbfdb1b01384555647 +SHA256: 49cedc33a4e8cca76959e6da110187cbb676f09bb3beb6d0f5f7b19c84e22b54 +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch +Description: CernVM File System + HTTP File System for Distributing Software to CernVM. + +Package: cvmfs-config-default +Version: 2.0-1 +Architecture: all +Maintainer: Jakob Blomer +Installed-Size: 13 +Conflicts: cvmfs-config, cvmfs-keys +Breaks: cvmfs (<< 2.1.20), cvmfs-keys, cvmfs-server (<< 2.1.20) +Replaces: cvmfs-keys +Provides: cvmfs-config +Filename: pool/noble-prod/main/cvmfs-config-default_2.0-1_all.deb +Size: 6426 +MD5sum: e04d7102bef2361b49dd6fbbcd6f6f91 +SHA1: 7c7b95d8a2ef10112323b50c9c809962d6dacbbb +SHA256: 9fc9b6204eddf13ac51b7ee7ddf98f3ec4e31b5cc22e94ad6d40bdce1a4fb7ae +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch/portal/filesystem +Description: CernVM File System Default Configuration + Defaulf configuration and public keys for mounting common CernVM-FS + repositories. + +Package: cvmfs-dev +Source: cvmfs +Version: 2.11.5~1+ubuntu24.04 +Architecture: amd64 +Maintainer: Jakob Blomer +Installed-Size: 66 +Depends: openssl +Filename: pool/noble-prod/main/cvmfs-dev_2.11.5~1+ubuntu24.04_amd64.deb +Size: 38838 +MD5sum: 33a87b4e9addc5b35efaee79db1bcd9a +SHA1: 21f5383227c80db94e9249b922f9976ce1dd3e96 +SHA256: 85cbdad949e91a16d7a4c45724efa9e32a7aca5f22fe51d4ef63a3c7c13787c1 +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch +Description: CernVM-FS client library + CernVM-FS static client library + +Package: cvmfs-fuse3 +Source: cvmfs +Version: 2.11.5~1+ubuntu24.04 +Architecture: amd64 +Maintainer: Jakob Blomer +Installed-Size: 42947 +Depends: fuse3, libfuse3-3, cvmfs (= 2.11.5~1+ubuntu24.04) +Filename: pool/noble-prod/main/cvmfs-fuse3_2.11.5~1+ubuntu24.04_amd64.deb +Size: 12831456 +MD5sum: 1f047c052c7da1aa1812dce519d20d6f +SHA1: 24b77a2ee868d809118458399e6791ea83069e6c +SHA256: d03982970a867cce7d794e810406d49d88a8d95e50b1616107615bc0356e73c4 +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch +Description: CernVM File System fuse3 libraries + Shared libraries implementing the CernVM-FS fuse module based on libfuse3 + +Package: cvmfs-gateway +Source: cvmfs +Version: 2.11.5~1+ubuntu24.04 +Architecture: amd64 +Maintainer: Jakob Blomer +Installed-Size: 15181 +Depends: psmisc, cvmfs-server +Filename: pool/noble-prod/main/cvmfs-gateway_2.11.5~1+ubuntu24.04_amd64.deb +Size: 8378588 +MD5sum: 6014bc2a71e423e421418d3ce252e99a +SHA1: f68c3ecf95d3af9498257c41a7f049e0ba20aab1 +SHA256: 77dd448b457c1fd356d5a5bc3f6b60aeb7ea93551bd7028cb12ea23e67309d31 +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch +Description: CernVM-FS Repository Gateway + The CernVM-FS repository gateway service enables multiple remote publishers to write to the same repository. + +Package: cvmfs-libs +Source: cvmfs +Version: 2.11.5~1+ubuntu24.04 +Architecture: amd64 +Maintainer: Jakob Blomer +Installed-Size: 36962 +Filename: pool/noble-prod/main/cvmfs-libs_2.11.5~1+ubuntu24.04_amd64.deb +Size: 10279042 +MD5sum: 13da0be358be4c4ea3c7df195831c82c +SHA1: 418a943dc69948704cdcfe648c9e0b228d1fc034 +SHA256: 1b3f308f82a078349e42f0f4c12d53cf111db30edc40cc3b825c17789c321e70 +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch +Description: CernVM-FS common libraries + Common utility libraries for CernVM-FS packages. + +Package: cvmfs-server +Source: cvmfs +Version: 2.11.5~1+ubuntu24.04 +Architecture: amd64 +Maintainer: Jakob Blomer +Installed-Size: 138232 +Depends: psmisc, curl, attr, openssl, libcap2, libcap2-bin, lsof, rsync, jq, usbutils, sqlite3, cvmfs-libs (= 2.11.5~1+ubuntu24.04) +Recommends: cvmfs-fuse3, apache2 +Conflicts: cvmfs-server (<< 2.1) +Filename: pool/noble-prod/main/cvmfs-server_2.11.5~1+ubuntu24.04_amd64.deb +Size: 39704400 +MD5sum: 06a60f251b2bc752514e55289dc6be62 +SHA1: 4e6aa43c4b0cf6864c559e2a93bddc081343c88a +SHA256: d0406550cdeae536851529d82dcff84707f98caf4467f342c8af7f990b3252bc +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch +Description: CernVM-FS server utilities + HTTP File System Repository Server for Distributing Software to CernVM. + +Package: cvmfs-shrinkwrap +Source: cvmfs +Version: 2.11.5~1+ubuntu24.04 +Architecture: amd64 +Maintainer: Jakob Blomer +Installed-Size: 1988 +Depends: openssl, python3, cvmfs-libs (= 2.11.5~1+ubuntu24.04) +Filename: pool/noble-prod/main/cvmfs-shrinkwrap_2.11.5~1+ubuntu24.04_amd64.deb +Size: 625582 +MD5sum: 6bcc0573ca564436830661a2f6d6b73b +SHA1: bf96226513fe83abf3a9e9dfbe74bc6c0511540b +SHA256: 8a0062850ff739d0cc5bcc16ead3dd748fee439f57f16191f5abd87cc49d5754 +Section: misc +Priority: extra +Homepage: http://cernvm.cern.ch +Description: CernVM-FS shrinkwrap utility to export /cvmfs file system trees + CernVM-FS shrinkwrap utility to export /cvmfs file system trees into container images. + diff --git a/apt_cache/lists/packages.microsoft.com_repos_azure-cli_dists_noble_InRelease b/apt_cache/lists/packages.microsoft.com_repos_azure-cli_dists_noble_InRelease new file mode 100644 index 000000000..b82fa9018 --- /dev/null +++ b/apt_cache/lists/packages.microsoft.com_repos_azure-cli_dists_noble_InRelease @@ -0,0 +1,44 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA256 + +Origin: azure-cli noble +Label: azure-cli noble +Suite: noble +Codename: noble +Date: Tue, 19 Nov 2024 02:40:41 +0000 +Architectures: amd64 arm64 armhf all +Components: main +Acquire-By-Hash: yes +SHA256: + b0cf849330827bf73ad11cd43598fc55fe7abeb2661269a0e5ac6db205106e74 4872 main/binary-amd64/Packages + d0a434b3d4f1f7a2a4d6ef067bbc88cb6a2a47f5419c0d5559f78db589141bea 878 main/binary-amd64/Packages.gz + 2b4fb996775e386ebfab7000e2dfecb72a69cb20571b6d5bd26c39fa7747e84b 4872 main/binary-arm64/Packages + f658cba27969197e35099c954109e3d03f8ad80621ce90eda4c5c9526ce916c3 881 main/binary-arm64/Packages.gz + e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 main/binary-armhf/Packages + b07be30122ca9e8e05805147965733ab22ec16d4d2e420764731e06270434078 29 main/binary-armhf/Packages.gz + e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 main/binary-all/Packages + e0801683cf0df8f8bf647762fb4dddd0a09c2ccdf876033c111ab8eb575e9abd 29 main/binary-all/Packages.gz + e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 main/source/Sources + 63d6bfa7553f288e42415757b54c5e8d90f01221a5965fe66834777012cf0da1 28 main/source/Sources.gz +SHA512: + 31d8acba5ca063465115b3ad06578dfbcd4f5b14e2b0da88bcbf65726cb2e0538446a54d0c92150418cff0ed11e050d458ba8b0a08aeb1a043255a56a45da036 4872 main/binary-amd64/Packages + 248908e59f15710dec6eff3d65106f4d6242dc191bff6f9233c7d548688d7a36576a8cada4468d16fe43214558351026dc74908cfe169746866927c35f985c9f 878 main/binary-amd64/Packages.gz + ceaf622e60832eb421eb40665a130b42e2c1164cadbc8fd263af15b4f7e4c49bb11e9b5b67a9fda8d858996d10b148656323c1df2abd7f5590a21dd0818d2ff4 4872 main/binary-arm64/Packages + 613b74a7c148d79c5b83d2b360b0bdd2cea43be87498bfa719700f697955f195df569e0611cb4aed41b9364af6ba4d48a3b5ef098d612c70392a1762f840f736 881 main/binary-arm64/Packages.gz + cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e 0 main/binary-armhf/Packages + 5d6f1d9dc9d5a5464ba2531d62547b15e5193f5ab296da81565547344d70d71808752425c4b41e24dee7723590210ec839f596ed5dd48e792388eace5724a92b 29 main/binary-armhf/Packages.gz + cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e 0 main/binary-all/Packages + 566c0ef8e9f7c8d77506cf6b1dd98e62cc21ee3bff9bf00b9074e528a9d7e886c2b8adabe4274d8962f42aa94d9bb15ee89ad3f42c6846baa1925aec1a60e6ee 29 main/binary-all/Packages.gz + cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e 0 main/source/Sources + f037d1b76639425d59dee4c6e94e73743e42d5216e840a7c2938b4d2091c586e4519dc630421d0de579af95ddba9f502f6d7b1a7cb5f6b261538100bce2608b1 28 main/source/Sources.gz + +-----BEGIN PGP SIGNATURE----- +Version: BSN Pgp v1.0.0.0 + +iQEcBAEBCAAGBQJnO/rdAAoJEOs+lK2+EinPK18IAK7IqDp4Cp+6A2WHTzEfzkXZ +SPoHU3Ij1YNJ8F6qjQae9oKmJziDiUqfS1Ipk2HY3HYgWeUW76xfxnknMNB7yvDN +rHeoP7AKskAi/Qlt0wY+/n+h3atnLuu6bZv/t7S3J5gatkD+MiNdjR2cfsoK/uFn +Z1VjB52HQC+RsO7t/rKWbN09oLxfOT1JRcjSBcrPh/qjruaAbatHqP1S4RMixfWR +FdFb40tjznM/aNx59e5JBuJfgog60mKWauhpIpTWuKzDhDIBGDoBORezpwOowm8W +igzY+ianIAdr7EtKn5/XjLBAmDl0iz3FZvnq3OqCfiQc5ZiAJGimzu4aySgA4f0= +-----END PGP SIGNATURE----- diff --git a/apt_cache/lists/packages.microsoft.com_repos_azure-cli_dists_noble_main_binary-amd64_Packages b/apt_cache/lists/packages.microsoft.com_repos_azure-cli_dists_noble_main_binary-amd64_Packages new file mode 100644 index 000000000..b5e416fc7 --- /dev/null +++ b/apt_cache/lists/packages.microsoft.com_repos_azure-cli_dists_noble_main_binary-amd64_Packages @@ -0,0 +1,112 @@ +Package: azure-cli +Version: 2.61.0-1~noble +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 681828 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.38), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3t64 (>= 3.0.0), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 38c6f2546462abb0a18f8662c98c1d4c255365389db7aeb34f91afe13df53f54 +Size: 56090774 +Filename: pool/main/a/azure-cli/azure-cli_2.61.0-1~noble_amd64.deb + +Package: azure-cli +Version: 2.62.0-1~noble +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 678589 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.38), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3t64 (>= 3.0.0), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: d693b640bdf38f1a4b736740a8fee55d307cc128cea1bed73e66d4a797dd451a +Size: 55678560 +Filename: pool/main/a/azure-cli/azure-cli_2.62.0-1~noble_amd64.deb + +Package: azure-cli +Version: 2.63.0-1~noble +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 683211 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.38), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3t64 (>= 3.0.0), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 1755a1be685eb4a7e3b1d7f3f6fd28bbeb29be9420ac7ee03d5f83e635c1e943 +Size: 56768376 +Filename: pool/main/a/azure-cli/azure-cli_2.63.0-1~noble_amd64.deb + +Package: azure-cli +Version: 2.64.0-1~noble +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 682537 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.38), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3t64 (>= 3.0.0), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: a123cd02257ace506ac24f19efa7f9fa56d47e181106dba7c00632d92676c4f8 +Size: 56120624 +Filename: pool/main/a/azure-cli/azure-cli_2.64.0-1~noble_amd64.deb + +Package: azure-cli +Version: 2.65.0-1~noble +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 684553 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.38), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3t64 (>= 3.0.0), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: e142e5b0acb9135698068182b930960130a0bbb39a4892d9cfafd88d2018ecce +Size: 56335576 +Filename: pool/main/a/azure-cli/azure-cli_2.65.0-1~noble_amd64.deb + +Package: azure-cli +Version: 2.66.0-1~noble +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 670785 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.38), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3t64 (>= 3.0.0), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 708fad020cdc2e1dd318665c987f3a8fad9ca78edbc4671aa9242dfa0d3101ae +Size: 54762666 +Filename: pool/main/a/azure-cli/azure-cli_2.66.0-1~noble_amd64.deb + +Package: azure-cli +Version: 2.67.0-1~noble +Architecture: amd64 +Section: python +Priority: extra +Installed-Size: 671614 +Maintainer: Azure Python CLI Team +Description: Azure CLI + A great cloud needs great tools; we're excited to introduce Azure CLI, + our next generation multi-platform command line experience for Azure. +Homepage: https://github.com/azure/azure-cli +Depends: libc6 (>= 2.38), libcrypt1 (>= 1:4.1.0), libffi8 (>= 3.4), libgcc-s1 (>= 4.2), libssl3t64 (>= 3.0.0), libuuid1 (>= 2.20.1), zlib1g (>= 1:1.2.0) +SHA256: 5f386d0cc42c2685ede89f8f4972efab4452d07b7afec9e7b7b4f36b579979b5 +Size: 54870440 +Filename: pool/main/a/azure-cli/azure-cli_2.67.0-1~noble_amd64.deb + diff --git a/apt_cache/lists/packages.microsoft.com_ubuntu_24.04_prod_dists_noble_InRelease b/apt_cache/lists/packages.microsoft.com_ubuntu_24.04_prod_dists_noble_InRelease new file mode 100644 index 000000000..f3b7284e2 --- /dev/null +++ b/apt_cache/lists/packages.microsoft.com_ubuntu_24.04_prod_dists_noble_InRelease @@ -0,0 +1,44 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA256 + +Origin: microsoft-ubuntu-noble-prod noble +Label: microsoft-ubuntu-noble-prod noble +Suite: noble +Codename: noble +Date: Tue, 17 Dec 2024 18:39:46 +0000 +Architectures: amd64 arm64 armhf all +Components: main +Acquire-By-Hash: yes +SHA256: + 0af0dcd36748690fb8ba9a0b534c8e6cbc03243c75f023bc0607ebaaace4f3d2 101131 main/binary-amd64/Packages + bd8bde89b3df57ee11c5cdcd7df10eb33407877008247ea20bb4c22f86eb2dfd 15712 main/binary-amd64/Packages.gz + 0a38849a70a55d925f32f717f18647a57bc33daa9aa655482622bfd99dc72d62 75979 main/binary-arm64/Packages + 19c26ac53d8886492a0620246e74fab60a528d18d0c2bec0c622357eb313477f 10445 main/binary-arm64/Packages.gz + d9f648d28adb66c146878cbd2c9f9874a57cffd3588d16e919a190c572dd61a0 49737 main/binary-armhf/Packages + 982a1ffc9092b716a2978856acf0266e4cc190c186e7765148064a92aa3f65a4 5884 main/binary-armhf/Packages.gz + dca22e5d8fad58400596d244bc4cc8636b09586b8a5449a36f6ba773b88e1470 1063 main/binary-all/Packages + f9d3fd5b102ef399d9f184be1f12dcfb4e796790c5070d8e453fa01826baf2d0 576 main/binary-all/Packages.gz + e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 0 main/source/Sources + 44c8833185eeeddc583f60f9eb2aad3de32616c2847694684d050bce05b7a113 28 main/source/Sources.gz +SHA512: + 334030b9379161cdcf6a99fd1a7c4e197e597a3446117eaa98270da92a6bdf32382cb5b14a4223302eb81c0d853fd55b0a6f9e209f64294278bf9c98859c5305 101131 main/binary-amd64/Packages + 0c2b69e8d79d685d2ca0052c128ec505e5391ae06ef2708e0a70579542c9d24a7a799d7bc32213de41b6fb423cebed1b918c098c4f9056f528e03b3fb2bd84ff 15712 main/binary-amd64/Packages.gz + d3412a1f9c92beec1434496ada1e3eb150bf484950b85d890c3a285e29a89bbf6ae53f498c21ca1c23c2265f5bde136cdd6206778d5ba78c4baa33fcdad35fc4 75979 main/binary-arm64/Packages + 29c4f7263170e38ea805a29b8fb2350b8b9ef1559241525ecdc960e3e07dfb326e9abc31a9f538671af8afe4d8deb2348ee9adc38aac88662030451be92f0e31 10445 main/binary-arm64/Packages.gz + 3fb1847c37069298eb97373250c63ac3a594e345693b52a7dfaf75576fb73c10637d23cec36634393398b607f7764b4b5e9a1b9161435224bd9bea010197a785 49737 main/binary-armhf/Packages + b62e22b909d2ff0fb33b12105d74e1a95db1a3fe5c530d360c4e5ebb9cf08c393a06a0d91aa5506facfb1fc95c09bc4e5c561a05e20e7504028434c4d526b13b 5884 main/binary-armhf/Packages.gz + bc6d071ee17fd30e2c25ed9326c17b9e9889a182cde9312431e7030016df79a77d2a6abae507d6534533c8f91b9f902da636ebf84ae4e94566a28a95281e993a 1063 main/binary-all/Packages + 32d076539d358da151f2a7ff327c6a877725d0616dead3fcc5cb905fa3792d660993c4be055b08738bf2a34b8da18594136794fbc9f199364c241107f487a637 576 main/binary-all/Packages.gz + cf83e1357eefb8bdf1542850d66d8007d620e4050b5715dc83f4a921d36ce9ce47d0d13c5d85f2b0ff8318d2877eec2f63b931bd47417a81a538327af927da3e 0 main/source/Sources + 2b94c90f43572da1fe24f75b09dc59d8321c3dcec070d9854ef811bbd660ac14ce96f5a8adedef864f376637a7c1fb6e23fcfc536e1ab89447281c527c74736e 28 main/source/Sources.gz + +-----BEGIN PGP SIGNATURE----- +Version: BSN Pgp v1.0.0.0 + +iQEcBAEBCAAGBQJnYcWEAAoJEOs+lK2+EinPf5wH/jkuxXGXLD9SQZhcFB7omrDH +FspE7iCot8qYILNCvcan8hLvePQXNhUIfeq7CCN0qPFRXxlHWB2QYIFGfLR0VmKv +dTF8eLoxM+lb2kf5jaUSNy9MYVjS2pCz1QqQtxfzBCJtPL2c7FaRju5cLQhUWHU8 +LObRecf4rQ2goJHguKk8c3IrNiGzc3jwnIAN6gehZDNEcSAqqDqJawdwChLMtFWd +/2jp+UugpP+OPzzehtyUa7lEEynnHCUnfgC7WS9sIf3BYbKFdFrqiWicTlRLZq/O +8VvH6aQdS0uZY0k9FZiCqy2wD5xfv/MUMp1HEL63JMcox7bRlvRlwx+pPdR94Uw= +-----END PGP SIGNATURE----- diff --git a/apt_cache/lists/packages.microsoft.com_ubuntu_24.04_prod_dists_noble_main_binary-all_Packages b/apt_cache/lists/packages.microsoft.com_ubuntu_24.04_prod_dists_noble_main_binary-all_Packages new file mode 100644 index 000000000..77230d22f --- /dev/null +++ b/apt_cache/lists/packages.microsoft.com_ubuntu_24.04_prod_dists_noble_main_binary-all_Packages @@ -0,0 +1,29 @@ +Package: packages-microsoft-prod +Version: 1.1-ubuntu24.04 +Architecture: all +Section: admin +Priority: optional +Maintainer: Linux Repo Admins +Description: Apt configuration for packages.microsoft.com + This package contains the apt repo configuration + for packages.microsoft.com and the public GPG key. +Depends: ca-certificates +SHA256: 607d2033f90d1e58ed3cb3593c9b83881f6b3cb3627ab7d00952f1c04199c3a1 +Size: 4298 +Filename: pool/main/p/packages-microsoft-prod/packages-microsoft-prod_1.1-ubuntu24.04_all.deb + +Package: mde-netfilter-src +Version: 100.69.73-2 +Architecture: all +Section: alien +Priority: extra +Installed-Size: 63 +Maintainer: root +Description: Microsoft Defender for Endpoints Netfitler + Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace + . + (Converted from a rpm package by alien version 8.95.) +SHA256: 8a745da95a44546cb2b034184fa51a1e9270ca67a0ef827613b651eb7b186c2c +Size: 13578 +Filename: pool/main/m/mde-netfilter-src/mde-netfilter-src_100.69.73-2_all.deb + diff --git a/apt_cache/lists/packages.microsoft.com_ubuntu_24.04_prod_dists_noble_main_binary-amd64_Packages b/apt_cache/lists/packages.microsoft.com_ubuntu_24.04_prod_dists_noble_main_binary-amd64_Packages new file mode 100644 index 000000000..4514553b1 --- /dev/null +++ b/apt_cache/lists/packages.microsoft.com_ubuntu_24.04_prod_dists_noble_main_binary-amd64_Packages @@ -0,0 +1,2237 @@ +Package: mdatp +Version: 101.24022.0001 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 593841 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: 503ef2d658d34300d072da231d10b8f8d2f70f11ad084db97723d0b369b59f15 +Size: 148896866 +Filename: pool/main/m/mdatp/mdatp_101.24022.0001_amd64.deb + +Package: blobfuse2 +Version: 2.3.0~preview.1 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 25410 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 823fcd4eae81e9330561cf1419c49e82086daaa01823d795fc347e0d92bb3c6c +Size: 13532390 +Filename: pool/main/b/blobfuse2/blobfuse2_2.3.0~preview.1_amd64.deb + +Package: moby-tini +Version: 0.19.0-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 761 +Maintainer: Microsoft +Description: tiny but valid init for containers + Tini is the simplest init you could think of. + . + All Tini does is spawn a single child (Tini is meant to be run in a + container), and wait for it to exit all the while reaping zombies and + performing signal forwarding. +Homepage: https://github.com/krallin/tini +SHA256: e00f91633cb86b14a64e4d6321225ea688169d90a7c227cdd805abd67d7ebc42 +Size: 350470 +Filename: pool/main/m/moby-tini/moby-tini_0.19.0-ubuntu24.04u1_amd64.deb + +Package: moby-engine +Version: 24.0.9-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 93231 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 9bb524c0e66dd6b9b9d436faee60384a3add471d39542daef0f218ae743cfb26 +Size: 31836064 +Filename: pool/main/m/moby-engine/moby-engine_24.0.9-ubuntu24.04u1_amd64.deb + +Package: moby-buildx +Version: 0.14.0-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 79501 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 97fb4666b9e43dd4c5b3a6ba19f9d8e029b2f58eae70110a76998fb57cf13552 +Size: 35914104 +Filename: pool/main/m/moby-buildx/moby-buildx_0.14.0-ubuntu24.04u1_amd64.deb + +Package: moby-containerd +Version: 1.6.31-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 128917 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: a8b091a3df46510d065b63465e6a75dfd14f66c75a9d874830aca38f799938ea +Size: 46035094 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.31-ubuntu24.04u1_amd64.deb + +Package: moby-runc +Version: 1.1.12-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 13500 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.38), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: eaf5660fb3170b6483a10f674d524b779611686859b49c3e90a7522464f2c565 +Size: 6830942 +Filename: pool/main/m/moby-runc/moby-runc_1.1.12-ubuntu24.04u1_amd64.deb + +Package: moby-cli +Version: 24.0.9-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 35248 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 0ba23e11d96ce78adef2308fcb40909ad54b46965a1511e442d6d0dcf5b9fe5a +Size: 15752166 +Filename: pool/main/m/moby-cli/moby-cli_24.0.9-ubuntu24.04u1_amd64.deb + +Package: moby-compose +Version: 2.26.1-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61398 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: b72e65ef141907d2f7c117266a7e93c9932e9b9eaae73ffe0e285e052d34e177 +Size: 18424562 +Filename: pool/main/m/moby-compose/moby-compose_2.26.1-ubuntu24.04u1_amd64.deb + +Package: moby-compose +Version: 2.27.0-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61664 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 24756ecccd3370cd2f85b0ab118369f3b63a77a4fb85f50eea6a3efbecb791d3 +Size: 18512894 +Filename: pool/main/m/moby-compose/moby-compose_2.27.0-ubuntu24.04u1_amd64.deb + +Package: moby-engine +Version: 26.1.1-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 106880 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: e7c97a6eaaf644bcd9c2989c3b7051379956fc537e11dab4ab37b7030c7065b0 +Size: 35777870 +Filename: pool/main/m/moby-engine/moby-engine_26.1.1-ubuntu24.04u1_amd64.deb + +Package: moby-cli +Version: 26.1.1-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 38938 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: e3574fd53d68ba78f97d0353a4aced27d55170e5b262742a556d3b9bebf24014 +Size: 17163406 +Filename: pool/main/m/moby-cli/moby-cli_26.1.1-ubuntu24.04u1_amd64.deb + +Package: moby-engine +Version: 26.1.2-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 106880 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: c941ad32787811907e22c902cae835d75781dfff19a99b2a8625f92f520cbb50 +Size: 35775526 +Filename: pool/main/m/moby-engine/moby-engine_26.1.2-ubuntu24.04u1_amd64.deb + +Package: moby-cli +Version: 26.1.2-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 38944 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 25f6270a5ec29bde2a2b37b8feb11efd23fbd9290b81b7a0cf81c9f5257d19d0 +Size: 17165478 +Filename: pool/main/m/moby-cli/moby-cli_26.1.2-ubuntu24.04u1_amd64.deb + +Package: dotnet-apphost-pack-6.0 +Version: 6.0.30-1 +Architecture: amd64 +Section: libs +Priority: standard +Installed-Size: 11075 +Maintainer: .NET Team +Description: Microsoft.NETCore.App.Host 6.0.30 + .NET is a development platform that you can use to build command-line applications, microservices and modern websites. It is open source, cross-platform and is supported by Microsoft. We hope you enjoy using it! If you do, please consider joining the active community of developers that are contributing to the project on GitHub (https://github.com/dotnet/core). We happily accept issues and PRs. +Homepage: https://github.com/dotnet/core +SHA256: 417d30371b6a2c80d0858f14c975df599c607e1b6dd864e10d9eef62ae6613ad +Size: 3535812 +Filename: pool/main/d/dotnet-apphost-pack-6.0/dotnet-apphost-pack-6.0_6.0.30-1_amd64.deb + +Package: mdatp +Version: 101.24032.0007 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 604136 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: 3ef5bccfa0e8fcef1bf55793162daf01b1a8fc2051d9d68ff9c65376a4c6ab67 +Size: 153106074 +Filename: pool/main/m/mdatp/mdatp_101.24032.0007_amd64.deb + +Package: blobfuse2 +Version: 2.3.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 25475 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 99e9990459543249be052e92dfc6cad41b542587dae85f8bd1a5f076d1e0dea5 +Size: 13561444 +Filename: pool/main/b/blobfuse2/blobfuse2_2.3.0_amd64.deb + +Package: moby-cli +Version: 26.1.3-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 38948 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 4d382628987a6420bade07b73f48e256541bac5675c2473a55023473375cb9b9 +Size: 17170030 +Filename: pool/main/m/moby-cli/moby-cli_26.1.3-ubuntu24.04u1_amd64.deb + +Package: moby-engine +Version: 26.1.3-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 106880 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: d6b67fd79745e94afd38683da675764fc17b7e70ca19f17a3e25004e7e204a64 +Size: 35781702 +Filename: pool/main/m/moby-engine/moby-engine_26.1.3-ubuntu24.04u1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.5801-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 109c073787d438d68590c25e74c5a733fed9a247ee43f0140d3b512250288e25 +Size: 159935386 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5801-1_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5801-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 214ed4164e17e9687096a426d604fecfc0d55e179d0a47dfbbafbd75dee77ae7 +Size: 159960754 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5801-1_amd64.deb + +Package: moby-buildx +Version: 0.14.1-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 79515 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 16304328500b52e11fb82e60ff79fa93272679d92f543a12e529aa567776a8c0 +Size: 35920016 +Filename: pool/main/m/moby-buildx/moby-buildx_0.14.1-ubuntu24.04u1_amd64.deb + +Package: moby-containerd +Version: 1.6.32-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 129400 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 577fa679b28101b1f5971686e3777550e3f1d651fb90cfaeb9f48e43a1f92485 +Size: 46237558 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.32-ubuntu24.04u1_amd64.deb + +Package: moby-compose +Version: 2.27.1-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61700 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 31e62356f73e94b3fc534f2ab2a1371fe170c64bc566c54058fbf2a4cbaee26b +Size: 18527344 +Filename: pool/main/m/moby-compose/moby-compose_2.27.1-ubuntu24.04u1_amd64.deb + +Package: procdump +Version: 3.3.0 +Architecture: amd64 +Maintainer: Sysinternals +Description: Sysinternals process dump utility + ProcDump is a command-line utility whose primary purpose is monitoring an application + for various resources and generating crash dumps during a spike that an administrator + or developer can use to determine the cause of the issue. ProcDump also serves as a + general process dump utility that you can embed in other scripts. +Depends: zlib1g, gdb (>= 7.6.1) +License: MIT +SHA256: 4d08b3f1634fc45f28cf856316b7b05477aafeef7c4aff0bb7f3c67c6cc693ed +Size: 1362614 +Filename: pool/main/p/procdump/procdump_3.3.0_amd64.deb + +Package: mdatp +Version: 101.24042.0002 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 604535 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: d124d38434c72c6dddcc0ae679e09fc7cfc71e332e7a5664f5596a48e6cdebcd +Size: 149366206 +Filename: pool/main/m/mdatp/mdatp_101.24042.0002_amd64.deb + +Package: moby-containerd +Version: 1.6.33-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 129396 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 75d39f1ff0eeb1636355f72c7978f5bef3b907ec3f6a978e90c01711043629f9 +Size: 46238618 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.33-ubuntu24.04u1_amd64.deb + +Package: moby-engine +Version: 26.1.4-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 106892 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 77ed6266582d850718045a36c5ce6bcf6984ca30b99d39024f50281310645ccc +Size: 35781114 +Filename: pool/main/m/moby-engine/moby-engine_26.1.4-ubuntu24.04u1_amd64.deb + +Package: moby-cli +Version: 26.1.4-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 38951 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 31c270052ac376ce0fbbffe20fc6a87cfb0c72395cd11b5a23235616f609a32e +Size: 17168828 +Filename: pool/main/m/moby-cli/moby-cli_26.1.4-ubuntu24.04u1_amd64.deb + +Package: aadsshlogin +Version: 1.0.027190001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.38), libcurl4t64 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3t64 (>= 3.0.0), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 58cc52bd4f40006530e12922661327ec4fd14049ba7d826b10df113c6832524b +Size: 324648 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.027190001_amd64.deb + +Package: aadsshlogin-selinux +Version: 1.0.027190001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.5-2), selinux-utils, selinux-policy-default +SHA256: 61192b1d9432d9686b8befd0a465d79c2ab6faedb92e2dbede69cc5d9e3f8963 +Size: 2220 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.027190001_amd64.deb + +Package: moby-buildx +Version: 0.15.0-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 79787 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 4e8344ede5e7898cf8d27b3fd74b87f9e722985a79c044eaf3eaa9b21cca5812 +Size: 36085596 +Filename: pool/main/m/moby-buildx/moby-buildx_0.15.0-ubuntu24.04u1_amd64.deb + +Package: moby-runc +Version: 1.1.13-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 13503 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.38), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: f697c2fe32fd1480a04d1bc6c1992f50a2c80c9e6817eef9e4dcc9d2f82a2094 +Size: 6832292 +Filename: pool/main/m/moby-runc/moby-runc_1.1.13-ubuntu24.04u1_amd64.deb + +Package: azcopy +Version: 10.25.0~preview.2 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 32580 +Maintainer: Azcopy v-Team +Description: A command-line utility that is used to copy data to and from containers and file shares in Azure Storage accounts +Homepage: https://github.com/Azure/azure-storage-azcopy +Vendor: none +License: unknown +SHA256: cb2f0c0758ddc4fedbfd19a5735126792aae387f8943dc566420997deb58de6a +Size: 16158362 +Filename: pool/main/a/azcopy/azcopy_10.25.0~preview.2_amd64.deb + +Package: moby-buildx +Version: 0.15.1-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 79798 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 29fcb8166f19194c37fa8a9271db6fe53df50b2b577ccf9f1e536c2ad5166083 +Size: 36096662 +Filename: pool/main/m/moby-buildx/moby-buildx_0.15.1-ubuntu24.04u1_amd64.deb + +Package: moby-compose +Version: 2.28.0-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61734 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 59fc460b5503524fe319290e73209f79be38a703c29d28c266dab5e7dbf5ef79 +Size: 18541360 +Filename: pool/main/m/moby-compose/moby-compose_2.28.0-ubuntu24.04u1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.5858-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: cc9abe755d9b624af76292e194b1b8f8b6243636d334d0535147c1fa53213e80 +Size: 208269730 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5858-1_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5858-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 04fa6228a5ff52024d4f38685b284c8b2ae0d4302a77c24d5c2e22cb38814f69 +Size: 208255474 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5858-1_amd64.deb + +Package: mdatp +Version: 101.24052.0002 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 636549 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: ff5555eaf3080128774ee2d624b1e969f8bd94c817e8921dac68c4f2aa437fa9 +Size: 147803348 +Filename: pool/main/m/mdatp/mdatp_101.24052.0002_amd64.deb + +Package: moby-compose +Version: 2.28.1-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61734 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 4080bd2ebf0ef9758ce991c45f83ed77897be0399ef505d0ca445c13a8d1fa16 +Size: 18541466 +Filename: pool/main/m/moby-compose/moby-compose_2.28.1-ubuntu24.04u1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.5907-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 13523212d7ca54ee91c59fe7be20b9a460f075f548b03704e92f4206a9341119 +Size: 208344190 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.5907-1_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.5907-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 2e140ce8d2548df11ce964c7d44d1ce2cb0b67df52d5a8bc86f77e1b05fad92d +Size: 208351962 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.5907-1_amd64.deb + +Package: moby-buildx +Version: 0.16.0-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 79995 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: e297b3166c425150e876f6381e8abed513e98bfd043909bbd5028e546a2d5f1e +Size: 36178754 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.0-ubuntu24.04u1_amd64.deb + +Package: moby-compose +Version: 2.29.0-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61809 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: f5b65f0f655be2da7aad9a448c4aa98c74fd10a1cba1ec7fabd3edae8d30316a +Size: 18565248 +Filename: pool/main/m/moby-compose/moby-compose_2.29.0-ubuntu24.04u1_amd64.deb + +Package: moby-containerd +Version: 1.6.34-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 129404 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 17323b309c19b73d50d9ae96ac198fe9fcdd00aaa82a009c4840d93af3302e52 +Size: 46240030 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.34-ubuntu24.04u1_amd64.deb + +Package: moby-buildx +Version: 0.16.1-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 80001 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: f67fc4aea0a643da0d544a2e157c80223f4b8765688e7ee0ff1fa6a228cd79d3 +Size: 36182108 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.1-ubuntu24.04u1_amd64.deb + +Package: sysinternalsebpf +Version: 1.4.0 +Architecture: amd64 +Installed-Size: 22072 +Maintainer: Sysinternals +Description: A shared library and code library for making eBPF programs. + SysinternalsEBPF is a shared library that provides control over + eBPF programs, and an eBPF code library that eBPF programs can include to + interact with the library. +Depends: libc6 (>= 2.26), libelf1 (>= 0.131), libglib2.0-0 (>= 2.12.0), libjson-glib-1.0-0 (>= 0.13.2), zlib1g (>= 1:1.2.3.3) +SHA256: 64958aac0d3f0949ebd9430f033e8b72b9e2ec4e444828fbf9b50a2122a47260 +Size: 705086 +Filename: pool/main/s/sysinternalsebpf/sysinternalsebpf_1.4.0_amd64.deb + +Package: procmon +Version: 2.0.0 +Architecture: amd64 +Maintainer: Sysinternals +Description: Sysinternals process monitor utility + Process Monitor (Procmon) is part of the Sysinternals suite of tools. Procmon provides a convenient and efficient way for Linux developers to trace the syscall + activity on the system. +Depends: sysinternalsebpf (>= 1.4), libelf1 (>= 0.0) +License: MIT +SHA256: c4f9d7d563bb62bdece9a3f8d1cfc207ec014eda3f3cd25d9c62415d61578bf4 +Size: 3008078 +Filename: pool/main/p/procmon/procmon_2.0.0_amd64.deb + +Package: moby-cli +Version: 27.0.3-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 39013 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 819e7420f39fa1ebe9a0390c15cf3de0b585fe7d39e5f9725363fe94a21ed2e5 +Size: 17192438 +Filename: pool/main/m/moby-cli/moby-cli_27.0.3-ubuntu24.04u1_amd64.deb + +Package: moby-engine +Version: 27.0.3-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 106615 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 2f5d6d4a679c1dddbe676f72920d523aea135524429285cd0b9df507685a6a2a +Size: 35746572 +Filename: pool/main/m/moby-engine/moby-engine_27.0.3-ubuntu24.04u1_amd64.deb + +Package: moby-compose +Version: 2.29.1-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61813 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: b4624b13baa5b7a31c281a4abcb6a2d7004e1772c14c3c03b6cc834d3e28d6f7 +Size: 18569292 +Filename: pool/main/m/moby-compose/moby-compose_2.29.1-ubuntu24.04u1_amd64.deb + +Package: moby-engine +Version: 26.1.5-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 106892 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 3eab5e7dade51bf4fca3d3783582bf11d1bf76bd851c7249d56a909ff6873de0 +Size: 35781350 +Filename: pool/main/m/moby-engine/moby-engine_26.1.5-ubuntu24.04u1_amd64.deb + +Package: moby-buildx +Version: 0.16.2-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 79991 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 42ac596992cf81c50b9fbaa92d6cf9b251dd2ae0b9a37917dff00362a4023dec +Size: 36176426 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.2-ubuntu24.04u1_amd64.deb + +Package: libmsquic +Version: 2.4.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 14437 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: bfb585548ec5c4cb031aeff228c2ef999ca3b4b306e74cfcc9add68e3591cd34 +Size: 4401768 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.0_amd64.deb + +Package: moby-cli +Version: 26.1.5-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 38951 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: bf9648788dd45013012aabee1f834912031d0430d84eb5e0ceb1a0cd5c552cf5 +Size: 17172950 +Filename: pool/main/m/moby-cli/moby-cli_26.1.5-ubuntu24.04u1_amd64.deb + +Package: msopenjdk-11 +Version: 11.0.24-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 329660 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 508307ae561f26b8285dbecbe19b898c19b2236320b0b9ee6786ea4a3c03e66e +Size: 169327846 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.24-1_amd64.deb + +Package: msopenjdk-17 +Version: 17.0.12-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 324665 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 887155b72d617637ef201642d86100eb311371ba763c7d21b1efce654bc16fa2 +Size: 164992854 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.12-1_amd64.deb + +Package: msopenjdk-21 +Version: 21.0.4-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 353343 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 21 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 80ac27b5f827a901ff1d1c34de344e894d6537b4521c633a6cdfe693d31a2824 +Size: 176652338 +Filename: pool/main/m/msopenjdk-21/msopenjdk-21_21.0.4-1_amd64.deb + +Package: mdatp +Version: 101.24062.0001 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 693609 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: 2078c1bf47faa9df1dc63dc96cda637e9b76016b3bf2b775045cc46e35f91cd4 +Size: 155759770 +Filename: pool/main/m/mdatp/mdatp_101.24062.0001_amd64.deb + +Package: azcopy +Version: 10.26.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 33376 +Maintainer: Azcopy v-Team +Description: A command-line utility that is used to copy data to and from containers and file shares in Azure Storage accounts +Homepage: https://github.com/Azure/azure-storage-azcopy +Vendor: none +License: unknown +SHA256: 3ed88a6b584481cf1d2bd37483278d1d84af0d89087dff55fc0951dd7c92e08c +Size: 16421136 +Filename: pool/main/a/azcopy/azcopy_10.26.0_amd64.deb + +Package: msodbcsql18 +Version: 18.4.1.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: 4d1036224ed11259bea297158c5e40884f6d24b274997cff5fe0ec53aafbd70c +Size: 755196 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.4.1.1-1_amd64.deb + +Package: mssql-tools18 +Version: 18.4.1.1-1 +Architecture: amd64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL Tools Team +Description: Tools for Microsoft(R) SQL Server(R) + This package provides tools for Microsoft(R) SQL Server(R). +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), msodbcsql18 (>= 18.0.0.0) +SHA256: 0700e0636b70f4473858dd4b1ebc1dc583787ba04dfd31369e92ce6fc5b8d98b +Size: 211370 +Filename: pool/main/m/mssql-tools18/mssql-tools18_18.4.1.1-1_amd64.deb + +Package: libmsquic +Version: 2.4.1 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 14441 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 9b9c3a524bfc402599a3e68c02fdd0cf1368dcfc3f91292c139478d7a8e8f6e9 +Size: 4405648 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.1_amd64.deb + +Package: azcmagent +Version: 1.45.02769.1661 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: af9b7b5bf89f1e573de58065de40da975000495e8b369f6b5d9a54b72b3e91a1 +Size: 67228634 +Filename: pool/main/a/azcmagent/azcmagent_1.45.02769.1661_amd64.deb + +Package: libmsquic +Version: 2.4.3 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 14475 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3t64, libnuma1, libxdp1, libnl-route-3-200 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 3d5c9474ef8b622de1f0bd8cf08206fac0dc2d2ab837bb6af9524be6f453e908 +Size: 4415542 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.3_amd64.deb + +Package: moby-containerd +Version: 1.6.35-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 129404 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: af89fa73a8462d8cf94ef86c59fdb5a3add74e0c9d9e623937f26a1790dbc1db +Size: 46243558 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.35-ubuntu24.04u1_amd64.deb + +Package: mde-netfilter +Version: 100.69.73 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 93 +Maintainer: Microsoft Defender for Endponts +Description: Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace +Depends: libnetfilter-queue1, libglib2.0-0 +SHA256: b9649737dc4acfd4d434c2063f6d22e18ba8654a81fbec20a77a8d1543a6d67b +Size: 25540 +Filename: pool/main/m/mde-netfilter/mde-netfilter_100.69.73_amd64.deb + +Package: moby-compose +Version: 2.29.2-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61830 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 2149d0867cd0545f15d6fc016129f9a61cb03937aa753b0e3619841f2f3ae40a +Size: 18573636 +Filename: pool/main/m/moby-compose/moby-compose_2.29.2-ubuntu24.04u1_amd64.deb + +Package: aadsshlogin +Version: 1.0.027890001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.38), libcurl4t64 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3t64 (>= 3.0.0), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: ab8267250b97bc6436176bd69023cc5d82f47b0ae4eb998698fc9299eb55b547 +Size: 324346 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.027890001_amd64.deb + +Package: aadsshlogin-selinux +Version: 1.0.027890001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.5-2), selinux-utils, selinux-policy-default +SHA256: bcbb8bee7308acd33026b90b9acb3b26eabddfa338599f683ca0d38a79d1b929 +Size: 2218 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.027890001_amd64.deb + +Package: aadsshlogin +Version: 1.0.027980001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.38), libcurl4t64 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3t64 (>= 3.0.0), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 32f13d053c3024312ddcf70d5c6c4230a5eecb3a2331f5da0670d45c4ba866d7 +Size: 324756 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.027980001_amd64.deb + +Package: aadsshlogin-selinux +Version: 1.0.027980001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.5-2), selinux-utils, selinux-policy-default +SHA256: 4538c70d0c48433e7f3ced684376d777c94d4e3cb0a83d56f64d5bb42b682afc +Size: 2222 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.027980001_amd64.deb + +Package: blobfuse2 +Version: 2.3.2 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 25502 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: c920f6140b12c0e97fcb8157354642ef56f0454b60ecd8c0cb8b9c36144fae12 +Size: 13573340 +Filename: pool/main/b/blobfuse2/blobfuse2_2.3.2_amd64.deb + +Package: moby-runc +Version: 1.1.14-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 13581 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.38), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 5f88420b785fd15da714ba18ed45b072a4e6f1017667b3bbe3dd02a5189a1f43 +Size: 6875912 +Filename: pool/main/m/moby-runc/moby-runc_1.1.14-ubuntu24.04u1_amd64.deb + +Package: aziot-edge +Version: 1.5.10-1 +Architecture: amd64 +Section: admin +Priority: extra +Installed-Size: 17211 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.5.3-1) +SHA256: 5d8e16a8a44b2abe5eb89ee24441eab6a2943dd043f51a94bb5cc8bf1299b87f +Size: 4434254 +Filename: pool/main/a/aziot-edge/aziot-edge_1.5.10-1_amd64.deb + +Package: aziot-identity-service +Version: 1.5.3-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 17199 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.38), libgcc-s1 (>= 4.2), libssl3t64 (>= 3.0.0), libtss2-esys-3.0.2-0t64 (>= 2.3.1), libtss2-mu-4.0.1-0t64 (>= 3.0.1), libtss2-rc0t64 (>= 3.0.1), libtss2-tctildr0t64 (>= 3.0.1), psmisc +SHA256: 1a2f4164b6acf12e766456b5b6fcb95f99ec8e916f471853d95b51e2d8ae2be3 +Size: 4150010 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.5.3-1_amd64.deb + +Package: moby-containerd +Version: 1.6.36-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 129412 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 6c72f3bf5913af28e8a0a7986b366588deeab6fbc16a508097e046b5a8063d54 +Size: 46244620 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.36-ubuntu24.04u1_amd64.deb + +Package: azcmagent +Version: 1.46.02809.1707 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 7c96c04a956b16b866c56c2c55abdd5565342b0392019cd5e2edb65171287d95 +Size: 67295686 +Filename: pool/main/a/azcmagent/azcmagent_1.46.02809.1707_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.6280-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 1f6163c7e80d29c8b6976441d21e4c00b480f1373d7593cc4993be27bc632ba3 +Size: 207734170 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.6280-1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.6280-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: f304a5e9dfe67b349e758423ea1171c329051616bd3ab77cd389f2048a0b3811 +Size: 207694814 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.6280-1_amd64.deb + +Package: moby-buildx +Version: 0.17.0-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 80039 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: b861d35d140c4feef77051421a4ed8afa6b9bbeb8b18dea5459a704df57cf3d1 +Size: 36200490 +Filename: pool/main/m/moby-buildx/moby-buildx_0.17.0-ubuntu24.04u1_amd64.deb + +Package: moby-compose +Version: 2.29.3-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61867 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 4d800e539696d7c3fb9019302b81e77ba5ac1837e6229a2218e00fcc8dcc89d7 +Size: 18589050 +Filename: pool/main/m/moby-compose/moby-compose_2.29.3-ubuntu24.04u1_amd64.deb + +Package: moby-buildx +Version: 0.17.1-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 80048 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 1b8ca1fc219ceb44b6c28f11967f95ae0d8fccae259c880949a0e0e09f52d46c +Size: 36199812 +Filename: pool/main/m/moby-buildx/moby-buildx_0.17.1-ubuntu24.04u1_amd64.deb + +Package: moby-compose +Version: 2.29.4-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61866 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: f2bdcf08e8e01bfdf58fece1df0f935a009421875e2e2846af001a20425fa419 +Size: 18584968 +Filename: pool/main/m/moby-compose/moby-compose_2.29.4-ubuntu24.04u1_amd64.deb + +Package: moby-compose +Version: 2.29.5-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61866 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 3e07170a5a4f44aa1028d2faa278af052cfb720ec37c8666a86e30d953199567 +Size: 18586582 +Filename: pool/main/m/moby-compose/moby-compose_2.29.5-ubuntu24.04u1_amd64.deb + +Package: omi +Source: omi +Version: 1.9.1.0 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 4932 +Maintainer: Microsoft Corporation +Description: Open Management Infrastructure + omi server +Depends: libc6 (>= 2.3.6), libpam-runtime (>= 0.79-3) +Provides: omi +SHA256: 4a5c942bac072372edd730ad0f7a8de754c78338402ce9350e02346e94faa973 +Size: 1917644 +Filename: pool/main/o/omi/omi_1.9.1.0_amd64.deb + +Package: scx +Source: scx +Version: 1.9.1.0 +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 7692 +Maintainer: Microsoft Corporation +Description: Microsoft System Center Operations Manager for UNIX/Linux agent + Provides server for Microsoft System Center Operations Manager. +Depends: omi (>= 1.0.8.6) +Provides: scx +SHA256: 5829987977698131fd86e705948db216dd77aecc7b1ab70e4d3a12f3a64789fe +Size: 2668468 +Filename: pool/main/s/scx/scx_1.9.1.0_amd64.deb + +Package: moby-compose +Version: 2.29.6-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61866 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 5c295c2bb82212186f4de747c98e5482aa87ef7ff8225c7315a7091e6fd1948d +Size: 18590604 +Filename: pool/main/m/moby-compose/moby-compose_2.29.6-ubuntu24.04u1_amd64.deb + +Package: moby-compose +Version: 2.29.7-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 61866 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 8d544d8fdd49797b7f2db6380e4ee73bfb3e46c4425bf78532c8208c7ccaf601 +Size: 18586520 +Filename: pool/main/m/moby-compose/moby-compose_2.29.7-ubuntu24.04u1_amd64.deb + +Package: mdatp +Version: 101.24072.0001 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 696335 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, auditd, libpcre3, mde-netfilter +SHA256: bc4dcfa9f9cb2dcb1cef27c8a05c8069a240c2d9582a72d2ee467482a6052a75 +Size: 156980660 +Filename: pool/main/m/mdatp/mdatp_101.24072.0001_amd64.deb + +Package: libmsquic +Version: 2.4.4 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 14477 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3t64, libnuma1, libxdp1, libnl-route-3-200 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: e5211b773d97aa19adaa2892c81640fe3947a5dc22234508917e686968b722a4 +Size: 4418734 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.4_amd64.deb + +Package: libmsquic +Version: 2.4.5 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 14477 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3t64, libnuma1, libxdp1, libnl-route-3-200 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: cb1895186a4b81cd0eceadca5b9af62b9500ba0bf714db7e97c414eb756ca843 +Size: 4418644 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.5_amd64.deb + +Package: powershell-preview +Version: 7.5.0-preview.5-1.deb +Architecture: amd64 +Section: shells +Priority: optional +Installed-Size: 186724 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu74|libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: a1fcadc5e8a1d922883bffc10e14200d99bdead7c9e372bb8cea2e094effe24a +Size: 74893636 +Filename: pool/main/p/powershell-preview/powershell-preview_7.5.0-preview.5-1.deb_amd64.deb + +Package: moby-runc +Version: 1.1.15-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 13580 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.38), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 1562d650467f1fefbf08fa487ea10d713bc92a03dd64942076f848367c88f345 +Size: 6873794 +Filename: pool/main/m/moby-runc/moby-runc_1.1.15-ubuntu24.04u1_amd64.deb + +Package: mdatp +Version: 101.24082.0004 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 696361 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, libpcre3, mde-netfilter +SHA256: a4741aece8269a354ad47be0fe1ac0d556b30fe47f3d4c50fa08a01dfbd23d1f +Size: 156420282 +Filename: pool/main/m/mdatp/mdatp_101.24082.0004_amd64.deb + +Package: azcmagent +Version: 1.47.02843.49 +Architecture: amd64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 2e7997f6ead3cd3a08308b41abb7886ae9a2fe0e5ddbb84bab8d8df9347e0973 +Size: 69122654 +Filename: pool/main/a/azcmagent/azcmagent_1.47.02843.49_amd64.deb + +Package: msopenjdk-11 +Version: 11.0.25-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 329747 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 3b9b4da5cc74d38040f1fb088156015fde023cdc1f003691ab916cbc77b27a9a +Size: 169403970 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.25-1_amd64.deb + +Package: msopenjdk-17 +Version: 17.0.13-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 323667 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 12655607a365805e4eee01a5e4980707b6002d8c2081babb5795cc93bba2724c +Size: 164501946 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.13-1_amd64.deb + +Package: msopenjdk-21 +Version: 21.0.5-1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 351955 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 21 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 1184bf0ce78768a7bfdb1ec511c602609ff28fc642dfeed9cdd93e0bae1e1a88 +Size: 175836002 +Filename: pool/main/m/msopenjdk-21/msopenjdk-21_21.0.5-1_amd64.deb + +Package: symcrypt-openssl +Version: 1.5.1-1~3.0 +Architecture: amd64 +Section: admin +Priority: optional +Maintainer: Microsoft Corp +Description: SymCrypt cryptography integration for OpenSSL +Depends: openssl (>= 3.0.0), openssl (<< 3.1.0), symcrypt +SHA256: a05eb0fd4becb43b99ac5a86b8a1369eea27402e8f29cb995caa6f0e76d7c9f1 +Size: 119014 +Filename: pool/main/s/symcrypt-openssl/symcrypt-openssl_1.5.1-1~3.0_amd64.deb + +Package: symcrypt +Version: 103.5.1-1 +Architecture: amd64 +Section: admin +Priority: optional +Maintainer: Microsoft Corp +Description: A core cryptographic library written by Microsoft +SHA256: f64dad955f0dde07f1a9bc62716c727ac0d9412e4f2202cbe845c4202543b6c3 +Size: 344306 +Filename: pool/main/s/symcrypt/symcrypt_103.5.1-1_amd64.deb + +Package: powershell +Version: 7.4.6-1.deb +Architecture: amd64 +Section: shells +Priority: optional +Installed-Size: 178494 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu74|libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: 79642721f0bc9baf07dafaab68ece1cbd822f86722492acf9b4031d41029a735 +Size: 71740660 +Filename: pool/main/p/powershell/powershell_7.4.6-1.deb_amd64.deb + +Package: powershell-lts +Version: 7.4.6-1.deb +Architecture: amd64 +Section: shells +Priority: optional +Installed-Size: 178494 +Maintainer: PowerShell Team +Description: PowerShell is an automation and configuration management platform. + It consists of a cross-platform command-line shell and associated scripting language. +Homepage: https://microsoft.com/powershell +Depends: libc6, libgcc1, libgssapi-krb5-2, libstdc++6, zlib1g, libicu74|libicu72|libicu71|libicu70|libicu69|libicu68|libicu67|libicu66|libicu65|libicu63|libicu60|libicu57|libicu55|libicu52, libssl3|libssl1.1|libssl1.0.2|libssl1.0.0 +Vendor: Microsoft Corporation +License: MIT License +SHA256: b462aaca8c414b5145bfe1799eeb051b271b384c9c092979ea18c2e6fbfacf85 +Size: 71746862 +Filename: pool/main/p/powershell-lts/powershell-lts_7.4.6-1.deb_amd64.deb + +Package: aziot-identity-service +Version: 1.5.4-1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 17199 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.38), libgcc-s1 (>= 4.2), libssl3t64 (>= 3.0.0), libtss2-esys-3.0.2-0t64 (>= 2.3.1), libtss2-mu-4.0.1-0t64 (>= 3.0.1), libtss2-rc0t64 (>= 3.0.1), libtss2-tctildr0t64 (>= 3.0.1), psmisc +SHA256: 80d6983c3231ca7cc71ace7b5a0f8517bc361f9e697ea2aeae5d6b43a355b1ba +Size: 4150992 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.5.4-1_amd64.deb + +Package: aziot-edge +Version: 1.5.13-1 +Architecture: amd64 +Section: admin +Priority: extra +Installed-Size: 17215 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.5.4-1) +SHA256: e1b0637819492dec21948b14a56c25b3b48abc6d156fb08361b629467c5378fc +Size: 4435676 +Filename: pool/main/a/aziot-edge/aziot-edge_1.5.13-1_amd64.deb + +Package: azcopy +Version: 10.27.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 53962 +Maintainer: Azcopy v-Team +Description: A command-line utility that is used to copy data to and from containers and file shares in Azure Storage accounts +Homepage: https://github.com/Azure/azure-storage-azcopy +Vendor: none +License: unknown +SHA256: c5fe8357eeb6f97471eabfd86bf3691d65d26aa971804fe146484a56172f2ba4 +Size: 23321166 +Filename: pool/main/a/azcopy/azcopy_10.27.0_amd64.deb + +Package: moby-compose +Version: 2.30.2-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 63144 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: ca7717bd64be62422ba10c2bcbd803cee6a61c812e081ecbdbe2f63d7ef82c25 +Size: 19001536 +Filename: pool/main/m/moby-compose/moby-compose_2.30.2-ubuntu24.04u1_amd64.deb + +Package: moby-buildx +Version: 0.18.0-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 81353 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: c6ecc1e51e854b576e84dcdea0ff56189b0893580d6cc31b2cb3bbc21dbb4018 +Size: 36966660 +Filename: pool/main/m/moby-buildx/moby-buildx_0.18.0-ubuntu24.04u1_amd64.deb + +Package: moby-compose +Version: 2.30.3-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 63144 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 74db4f3cdb2f52973191aca2bb254ac3344eaa3d31b1d9219fdc2213d407108f +Size: 19003732 +Filename: pool/main/m/moby-compose/moby-compose_2.30.3-ubuntu24.04u1_amd64.deb + +Package: aadsshlogin +Version: 1.0.028680001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.38), libcurl4t64 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3t64 (>= 3.0.0), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 1393bc3af0cf2cd4d5a4a13878e90a62ab4ec4e708266f2e94d2db355bbdf1cd +Size: 330800 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.028680001_amd64.deb + +Package: aadsshlogin-selinux +Version: 1.0.028680001 +Architecture: amd64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.5-2), selinux-utils, selinux-policy-default +SHA256: 841689ab0488c3a1bc17161a73f2649d59a3167e05e6941cd88c15c228d2c25a +Size: 2220 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.028680001_amd64.deb + +Package: azcopy +Version: 10.27.1 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 53965 +Maintainer: Azcopy v-Team +Description: A command-line utility that is used to copy data to and from containers and file shares in Azure Storage accounts +Homepage: https://github.com/Azure/azure-storage-azcopy +Vendor: none +License: unknown +SHA256: f9386012842ccefd20c8b63b5e8ea4c4f2c5a5443ce11ca23f6fd4ec4643aeef +Size: 23326262 +Filename: pool/main/a/azcopy/azcopy_10.27.1_amd64.deb + +Package: mdatp +Version: 101.24092.0002 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 697241 +Maintainer: Microsoft Defender Group +Description: Microsoft Defender (Production) + Microsoft Defender is a complete endpoint + security solution. It delivers preventative protection, post-breach + detection, automated investigation, and response. +Depends: libc6 (>= 2.23), uuid-runtime, libpcre3, mde-netfilter +SHA256: e7a49c2b0a5407a5358cbe7978e827f79cefad49f8b9775b8f55c910c7d2a8c4 +Size: 158420040 +Filename: pool/main/m/mdatp/mdatp_101.24092.0002_amd64.deb + +Package: azure-functions-core-tools-4 +Version: 4.0.6610-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 2b74f95790ab159d97f04ab175b0276c3109b0c54435ea339ca39cbe32889db2 +Size: 270786682 +Filename: pool/main/a/azure-functions-core-tools-4/azure-functions-core-tools-4_4.0.6610-1_amd64.deb + +Package: azure-functions-core-tools +Version: 4.0.6610-1 +Architecture: amd64 +Section: devel +Priority: optional +Maintainer: Ahmed ElSayed +Description: Azure Function Core Tools v4 + The Azure Functions Core Tools provide a local development experience for creating, developing, testing, running, and debugging Azure Functions. +Homepage: https://docs.microsoft.com/en-us/azure/azure-functions/functions-run-local#run-azure-functions-core-tools +Conflicts: azure-functions-core-tools-2, azure-functions-core-tools-3 +Replaces: azure-functions-core-tools-2, azure-functions-core-tools-3 +Vcs-Git: https://github.com/Azure/azure-functions-core-tools.git +SHA256: 6d5cf2bf0dee63e5c7ae87df57cfae05ccfc9549a1afcfdfadd4b2d2b7548d67 +Size: 270779102 +Filename: pool/main/a/azure-functions-core-tools/azure-functions-core-tools_4.0.6610-1_amd64.deb + +Package: microsoft-identity-broker +Source: microsoft-identity-broker +Version: 2.0.1 +Architecture: amd64 +Section: java +Priority: optional +Installed-Size: 91443 +Maintainer: Microsoft Identity +Description: microsoft-identity-broker + Microsoft Authentication Broker for Linux. +Conflicts: msft-identity-broker +Depends: default-jre, systemd, dbus-session-bus, dbus-system-bus, gnome-keyring +Recommends: microsoft-identity-diagnostics +Provides: msft-identity-broker +Replaces: msft-identity-broker +SHA256: 2617899ecbb567125b729b74dfaec5a9f1d5770596bcf7a6d9f9b48bcb3b3061 +Size: 84422394 +Filename: pool/main/m/microsoft-identity-broker/microsoft-identity-broker_2.0.1_amd64.deb + +Package: moby-buildx +Version: 0.19.0-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 82029 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: ebd849ca9ff7ab2a443a91f86d56d0e12794598f17001cdcb55590c660979ab8 +Size: 37204132 +Filename: pool/main/m/moby-buildx/moby-buildx_0.19.0-ubuntu24.04u1_amd64.deb + +Package: moby-buildx +Version: 0.19.1-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 81955 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: f852ad880fb39a93ba80c9f5892106997249f39b33f47bed6d201d9a9afe0512 +Size: 37168802 +Filename: pool/main/m/moby-buildx/moby-buildx_0.19.1-ubuntu24.04u1_amd64.deb + +Package: moby-compose +Version: 2.31.0-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 63287 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: e9cdfe23e196128116aaa404962dcb0e2f2c8f4c6fe4087b9cbd5cd79bdd9489 +Size: 19074380 +Filename: pool/main/m/moby-compose/moby-compose_2.31.0-ubuntu24.04u1_amd64.deb + +Package: blobfuse2 +Version: 2.4.0 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 33581 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: eb4369a5de13d82b4800d32a136c27a2bfa083450b8aa47b44d2388c80e2cc1c +Size: 16999802 +Filename: pool/main/b/blobfuse2/blobfuse2_2.4.0_amd64.deb + +Package: libmsquic +Version: 2.4.7 +Architecture: amd64 +Section: default +Priority: optional +Installed-Size: 14477 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3t64, libnuma1, libxdp1, libnl-route-3-200 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 7cc13449f9eca63758551873bee826792e4517497a1a861381c79422f66c291b +Size: 4412426 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.7_amd64.deb + +Package: moby-engine +Version: 27.3.1-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 108185 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 776a9e9c97ff4a35da6926bda5f5dbc73602ebbea2b233447fc209beaa2af42e +Size: 36282928 +Filename: pool/main/m/moby-engine/moby-engine_27.3.1-ubuntu24.04u1_amd64.deb + +Package: moby-cli +Version: 27.3.1-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 40141 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: a833f43dca1b5ba99615d50f4a6cf6e890802cc41fb1d1f1a30a6e248f548168 +Size: 17675800 +Filename: pool/main/m/moby-cli/moby-cli_27.3.1-ubuntu24.04u1_amd64.deb + +Package: moby-buildx +Version: 0.19.2-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 81965 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 2651a65ea9a51f69429cd6b81e2edb07301fa05e8d5721f79e592d0f087e1c45 +Size: 37180934 +Filename: pool/main/m/moby-buildx/moby-buildx_0.19.2-ubuntu24.04u1_amd64.deb + +Package: intune-portal +Version: 1.2411.14-noble +Architecture: amd64 +Section: utils +Priority: optional +Installed-Size: 27134 +Maintainer: Microsoft +Description: Microsoft Intune + Microsoft Intune helps organizations manage access to corporate apps, data, and + resources. Microsoft Intune is the app that lets you, as an employee of your + company, securely access those resources. + . + Before you can use this app, make sure your IT admin has set up your work + account. Your company must also have a subscription to Microsoft Intune. + . + Microsoft Intune helps simplify the tasks you need to do for work: + . + - Enroll your device to access corporate resources, including Office, email, + and OneDrive for Business. + - Sign in to corporate resources with company-issued certificates. + - View and manage your enrolled devices – and wipe them if they get lost or + stolen. + - Get help directly from your IT department through available contact + information. + . + A note about Intune: every organization has different access requirements, and + will use Intune in ways that they determine will best manage their information. + Some functionality might be unavailable in certain countries. If you have + questions about how this app is being used within your organization, your + company’s IT administrator should have those answers for you. Microsoft, your + network provider, and your device’s manufacturer do not know how Intune will + be used by your organization. +Depends: libgtk-3-0t64 (>= 3.21.4), libsoup-3.0-0 (>= 2.4.0), microsoft-identity-broker (>= 2.0.1), openjdk-11-jre (>= 11), libsqlite3-0 (>= 3.7.14), libsystemd0, libwebkit2gtk-4.1-0 (>= 2.39.90), libc6 (>= 2.38), libx11-6, libuuid1 (>= 2.16), libp11-kit0 (>= 0.25.0), libdbus-1-3 (>= 1.9.14), libstdc++6 (>= 13), libglib2.0-0t64 (>= 2.70.0), libcurl4t64 (>= 7.16.2), libgtk-3-0t64 (>= 3.13.7), libc6 (>= 2.34), zlib1g (>= 1:1.2.0), libatk1.0-0t64 (>= 1.12.4), libpango-1.0-0 (>= 1.14.0), libpam-pwquality (>= 1.4.0-2), libsecret-1-0 (>= 0.7), libpam0g (>= 0.99.7.1), gnome-keyring (>= 3.36), libssl3t64 (>= 3.0.0) +Recommends: microsoft-edge-stable (>= 102) +SHA256: 37a69f4f3cca163ca1897230b20998a684a108571f6203499c2fcd1c420eec66 +Size: 6606406 +Filename: pool/main/i/intune-portal/intune-portal_1.2411.14-noble_amd64.deb + +Package: moby-compose +Version: 2.32.0-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 63760 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: bfbf630c131a06659e930ea480e0d4f3179229d7140e6205383918457c07a0e7 +Size: 19035892 +Filename: pool/main/m/moby-compose/moby-compose_2.32.0-ubuntu24.04u1_amd64.deb + +Package: moby-buildx +Version: 0.19.3-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 81967 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 5e13922f0ec28d143b20bf5e2e70dd2253d8ae6b28f163b297f3e83a716cb3b6 +Size: 37039464 +Filename: pool/main/m/moby-buildx/moby-buildx_0.19.3-ubuntu24.04u1_amd64.deb + +Package: moby-compose +Version: 2.32.1-ubuntu24.04u1 +Architecture: amd64 +Section: admin +Priority: optional +Installed-Size: 63760 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 3812f8e8b5c1650d2a3c48f929d41e9183a9f0193defdd67db8b13a45b794cad +Size: 19036012 +Filename: pool/main/m/moby-compose/moby-compose_2.32.1-ubuntu24.04u1_amd64.deb + +Package: mde-netfilter +Version: 100.69.62 +Architecture: amd64 +Section: devel +Priority: optional +Installed-Size: 92 +Maintainer: Microsoft Defender for Endponts +Description: Microsoft Defender for Endpoints Netfitler ({{{RELEASE_RING}}}) Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace +Depends: libnetfilter-queue1, libglib2.0-0 +SHA256: 212e84e652d7b1591429bcf4e6acefee0fb3ba3295b8a2e64652cd8235058974 +Size: 24424 +Filename: pool/main/m/mde-netfilter/mde-netfilter_100.69.62_amd64.deb + +Package: mde-netfilter-src +Version: 100.69.62-2 +Architecture: amd64 +Section: alien +Priority: extra +Installed-Size: 63 +Maintainer: root +Description: Microsoft Defender for Endpoints Netfitler + Microsoft Defender for Endpoints Netfilter is an open source software to filter packets in userspace + . + (Converted from a rpm package by alien version 8.95.) +SHA256: 499d5c0c2caf30b4be33753611c94edd449b87a2b40d4e200b53174c76aabb0d +Size: 13628 +Filename: pool/main/m/mde-netfilter-src/mde-netfilter-src_100.69.62-2_amd64.deb + diff --git a/apt_cache/lists/packages.microsoft.com_ubuntu_24.04_prod_dists_noble_main_binary-arm64_Packages b/apt_cache/lists/packages.microsoft.com_ubuntu_24.04_prod_dists_noble_main_binary-arm64_Packages new file mode 100644 index 000000000..90a2887d0 --- /dev/null +++ b/apt_cache/lists/packages.microsoft.com_ubuntu_24.04_prod_dists_noble_main_binary-arm64_Packages @@ -0,0 +1,1690 @@ +Package: blobfuse2 +Version: 2.3.0~preview.1 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 24307 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 24527ed2fd289897178bafcc241d2e95a3c9a97fcf0e1ea39acd1f23f37517be +Size: 12482502 +Filename: pool/main/b/blobfuse2/blobfuse2_2.3.0~preview.1_arm64.deb + +Package: moby-buildx +Version: 0.14.0-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77003 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: ced5df82cfe592278c14d181464dca4223f48b4ca859fc51cee70468ecc3b22f +Size: 33382448 +Filename: pool/main/m/moby-buildx/moby-buildx_0.14.0-ubuntu24.04u1_arm64.deb + +Package: moby-engine +Version: 24.0.9-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 66678 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 4b459a3e0a1dd5eb0d0a910dcd0d65a5b937382a7e3991e7df21c50f35ebf1b0 +Size: 21174454 +Filename: pool/main/m/moby-engine/moby-engine_24.0.9-ubuntu24.04u1_arm64.deb + +Package: moby-tini +Version: 0.19.0-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 604 +Maintainer: Microsoft +Description: tiny but valid init for containers + Tini is the simplest init you could think of. + . + All Tini does is spawn a single child (Tini is meant to be run in a + container), and wait for it to exit all the while reaping zombies and + performing signal forwarding. +Homepage: https://github.com/krallin/tini +SHA256: e7e1db7de536d64106cae8b7ef627d1fbf2e9964428ccb4916513bda04823cf0 +Size: 286284 +Filename: pool/main/m/moby-tini/moby-tini_0.19.0-ubuntu24.04u1_arm64.deb + +Package: moby-containerd +Version: 1.6.31-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 102507 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 04587316d1a8d23aa503d3fbcdfb428175fbe77fda0f560664781865e4813e62 +Size: 34361266 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.31-ubuntu24.04u1_arm64.deb + +Package: moby-runc +Version: 1.1.12-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 13013 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.38), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 0b136f0efbeeacf40af1067378c0759947154d35e310d2c58baa0cdb56987312 +Size: 6356358 +Filename: pool/main/m/moby-runc/moby-runc_1.1.12-ubuntu24.04u1_arm64.deb + +Package: moby-cli +Version: 24.0.9-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 33937 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 7c5c52fd4ca19b813c8035a1fe9661f72617f0326a7fb8f56837f1e51df282d4 +Size: 14585366 +Filename: pool/main/m/moby-cli/moby-cli_24.0.9-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.26.1-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 59707 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: d6cd9f2b08e4dde10429f7de53d340c89f7f2e91b18345fe5c382e2fe481e9e3 +Size: 16696978 +Filename: pool/main/m/moby-compose/moby-compose_2.26.1-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.27.0-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 59998 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 7d2b8ea653b90e928860dbf7918b45afa160cc0a578d0a7e5a4ce5e5fffc972e +Size: 16780072 +Filename: pool/main/m/moby-compose/moby-compose_2.27.0-ubuntu24.04u1_arm64.deb + +Package: moby-engine +Version: 26.1.1-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 76056 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 30cb5388aa64e9e65e27516e9818145392b04a8f1ce322cd900bc32abdb5e701 +Size: 23461416 +Filename: pool/main/m/moby-engine/moby-engine_26.1.1-ubuntu24.04u1_arm64.deb + +Package: moby-cli +Version: 26.1.1-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 37565 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 84f86ff8cf4526e91c345c3a81283105fe191df3655316ef7dc6404efcbefc73 +Size: 15911372 +Filename: pool/main/m/moby-cli/moby-cli_26.1.1-ubuntu24.04u1_arm64.deb + +Package: moby-engine +Version: 26.1.2-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 76055 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 1e0c5398c89a651c5697617f58db971455a782ca38f6a1ae7063267ce9abf01b +Size: 23463524 +Filename: pool/main/m/moby-engine/moby-engine_26.1.2-ubuntu24.04u1_arm64.deb + +Package: moby-cli +Version: 26.1.2-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 37566 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 28b3b2950f80a4b734fde9a8c32b78243616c17cc4c4118e3cbe9da0d3b55e54 +Size: 15916386 +Filename: pool/main/m/moby-cli/moby-cli_26.1.2-ubuntu24.04u1_arm64.deb + +Package: blobfuse2 +Version: 2.3.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 24366 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: 1a01bd3f7a4200093b80578db55ae4c3994797cdf81debd846540a76b2d4b014 +Size: 12501224 +Filename: pool/main/b/blobfuse2/blobfuse2_2.3.0_arm64.deb + +Package: moby-cli +Version: 26.1.3-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 37569 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 83744231eb4bb92b8bb49840ef4d2f1df4d725826db743c65251b665ee2b34c9 +Size: 15921276 +Filename: pool/main/m/moby-cli/moby-cli_26.1.3-ubuntu24.04u1_arm64.deb + +Package: moby-engine +Version: 26.1.3-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 76055 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: bc6bfe2bf48129e11efa57ce95ad5fb866a8d1123b6b85c2d315294984ccf3ea +Size: 23461032 +Filename: pool/main/m/moby-engine/moby-engine_26.1.3-ubuntu24.04u1_arm64.deb + +Package: moby-buildx +Version: 0.14.1-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77070 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 4177dfd332368650e74489daa145eae9bf12ec014d629d306facd102a8bd4c31 +Size: 33391770 +Filename: pool/main/m/moby-buildx/moby-buildx_0.14.1-ubuntu24.04u1_arm64.deb + +Package: moby-containerd +Version: 1.6.32-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 102825 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 096f798b692a356058af1882e98dc244d5031e3688796351975db6045111317c +Size: 34518186 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.32-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.27.1-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60002 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: e384fbf118f0ee7f2aa23832766063b0633e442245b108e0d4180f5b1932b8be +Size: 16791604 +Filename: pool/main/m/moby-compose/moby-compose_2.27.1-ubuntu24.04u1_arm64.deb + +Package: moby-containerd +Version: 1.6.33-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 102825 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: ee90d971d850f78d0e21ffa30ed045642ae916b73f233cb1abf995c7f2ee0110 +Size: 34517646 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.33-ubuntu24.04u1_arm64.deb + +Package: moby-engine +Version: 26.1.4-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 76055 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 060d0b3529e8837a8f06e755819936460ffe79619c1ccaa4b3fd7a6238b75fa4 +Size: 23459308 +Filename: pool/main/m/moby-engine/moby-engine_26.1.4-ubuntu24.04u1_arm64.deb + +Package: moby-cli +Version: 26.1.4-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 37570 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: ba7712a66dfdbf8b3d37fc6fa773b959ea5cb9a155611ad7992c8a95711d59df +Size: 15922152 +Filename: pool/main/m/moby-cli/moby-cli_26.1.4-ubuntu24.04u1_arm64.deb + +Package: aadsshlogin +Version: 1.0.027190001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.38), libcurl4t64 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3t64 (>= 3.0.0), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 64ab34bfcab59fd3bdb99d3dd939ddc3af401024dd522c10885ff098ab99cb03 +Size: 329958 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.027190001_arm64.deb + +Package: aadsshlogin-selinux +Version: 1.0.027190001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.5-2), selinux-utils, selinux-policy-default +SHA256: 0f1b163b2fe1979c202566b6967966f21956469f68e1a02e0c3f5734c582dd1d +Size: 2220 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.027190001_arm64.deb + +Package: moby-buildx +Version: 0.15.0-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77300 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: c5230699ae1d019cd301cc770679c5007d1fb290a09954c9219ae67c30a4cab2 +Size: 33565984 +Filename: pool/main/m/moby-buildx/moby-buildx_0.15.0-ubuntu24.04u1_arm64.deb + +Package: moby-runc +Version: 1.1.13-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 13016 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.38), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 4e83b56cb4400106d9628ee2c0cae46b1a2b2d18144d74d6165812ab12d2d010 +Size: 6358996 +Filename: pool/main/m/moby-runc/moby-runc_1.1.13-ubuntu24.04u1_arm64.deb + +Package: azcopy +Version: 10.25.0~preview.2 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 31293 +Maintainer: Azcopy v-Team +Description: A command-line utility that is used to copy data to and from containers and file shares in Azure Storage accounts +Homepage: https://github.com/Azure/azure-storage-azcopy +Vendor: none +License: unknown +SHA256: 6a958fe2fe7937a92d3d9b996e9d4f298b84efda3812625d001e5fba8298a9ed +Size: 15101278 +Filename: pool/main/a/azcopy/azcopy_10.25.0~preview.2_arm64.deb + +Package: moby-buildx +Version: 0.15.1-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77289 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 42f4d0b9dbfd70fc83f60e064307f3584f3e5783470cee45b9e8816e86883659 +Size: 33552756 +Filename: pool/main/m/moby-buildx/moby-buildx_0.15.1-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.28.0-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 59992 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: a27578c655125fade61d90343936e3f33c3b956b819d48a53268eb0d1460362a +Size: 16800204 +Filename: pool/main/m/moby-compose/moby-compose_2.28.0-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.28.1-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 59992 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: ef548bdddc41d0bc2729152ef1fbd08e75fb5ee70edff6a2f3fd43fdc4f5fbd7 +Size: 16799990 +Filename: pool/main/m/moby-compose/moby-compose_2.28.1-ubuntu24.04u1_arm64.deb + +Package: moby-buildx +Version: 0.16.0-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77512 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: e3444ff1d086cd50bcd0a7f255238f0ba43fa077a2a83e600b9db6f09191156b +Size: 33670912 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.0-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.29.0-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60063 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 1ff88b5b9f5583403b1875b3e154bd1e8ce960cb754b393f2b30eb55e6dede12 +Size: 16823512 +Filename: pool/main/m/moby-compose/moby-compose_2.29.0-ubuntu24.04u1_arm64.deb + +Package: moby-containerd +Version: 1.6.34-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 102825 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: c34de275c8b3e3fdc17c6484a8db871f013d583383d494c978bf5c7de7807862 +Size: 34512596 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.34-ubuntu24.04u1_arm64.deb + +Package: moby-buildx +Version: 0.16.1-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77512 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 9ae7b05ea4c3777a0974bbb65aa0e4e9b8b20538e8e02e82f9862aa9697d2e94 +Size: 33669850 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.1-ubuntu24.04u1_arm64.deb + +Package: moby-cli +Version: 27.0.3-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 37647 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: c373dd32f6b3b2ae0e4388c5c065f204d160570012047a074954dbf83df2ae61 +Size: 15944232 +Filename: pool/main/m/moby-cli/moby-cli_27.0.3-ubuntu24.04u1_arm64.deb + +Package: moby-engine +Version: 27.0.3-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 75965 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: a5cc2c08eedce6ec545d6b53c3ed2f3dd7ca9f5b9a54b1a016642870de77fe04 +Size: 23496068 +Filename: pool/main/m/moby-engine/moby-engine_27.0.3-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.29.1-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60063 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 9745317b4803cd2e7b07a37be5c62085e60b86f27f0e9bbb5c2152320aff1a2f +Size: 16825698 +Filename: pool/main/m/moby-compose/moby-compose_2.29.1-ubuntu24.04u1_arm64.deb + +Package: moby-engine +Version: 26.1.5-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 76058 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 379b3db88fa8fbcfd08cd348786655be4a3e468693ca29f5b2f3b4f12f3c5e50 +Size: 23464726 +Filename: pool/main/m/moby-engine/moby-engine_26.1.5-ubuntu24.04u1_arm64.deb + +Package: moby-buildx +Version: 0.16.2-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77516 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: a9964e0a571d1791875cb5cad8212cd606afd1a630f91e2a332dd6b3df5031ee +Size: 33674926 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.2-ubuntu24.04u1_arm64.deb + +Package: libmsquic +Version: 2.4.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 13984 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: bd7887234d541bc1286e011761950e81041bd0f973ab6014e9ce8b474c48e5c7 +Size: 4132586 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.0_arm64.deb + +Package: moby-cli +Version: 26.1.5-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 37570 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: a1c20dfd19503b8ee365d920ba8eb6601a55352912ebc770df144fcb0a72a731 +Size: 15920800 +Filename: pool/main/m/moby-cli/moby-cli_26.1.5-ubuntu24.04u1_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.24-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 329448 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 3fefc3a41ad59a18fa419eeba3fcb656b57b5adb2247048386bbbca7a8d86c5b +Size: 167515398 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.24-1_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.12-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 326466 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 22cfddd5688ff3f81c88b39cc474908bb8376b123950b5b9af87b6db3b7387ea +Size: 163047258 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.12-1_arm64.deb + +Package: msopenjdk-21 +Version: 21.0.4-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 353785 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 21 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: a272c8046e37f3ee959a79ed1618f1e99998dc5ae5612c787600a2f2d3f0708b +Size: 174279090 +Filename: pool/main/m/msopenjdk-21/msopenjdk-21_21.0.4-1_arm64.deb + +Package: azcopy +Version: 10.26.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 32118 +Maintainer: Azcopy v-Team +Description: A command-line utility that is used to copy data to and from containers and file shares in Azure Storage accounts +Homepage: https://github.com/Azure/azure-storage-azcopy +Vendor: none +License: unknown +SHA256: 9407c54c6bf82a60b6b244bb1e640bcabcad451cfb4a81fd6c34d999d6822408 +Size: 15361080 +Filename: pool/main/a/azcopy/azcopy_10.26.0_arm64.deb + +Package: msodbcsql18 +Version: 18.4.1.1-1 +Architecture: arm64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL ODBC Team +Description: ODBC Driver for Microsoft(R) SQL Server(R) + This package provides an ODBC driver that can connect to Microsoft(R) + SQL Server(R). +Conflicts: libodbc1-utf16, odbcinst-utf16, odbcinst1debian2-utf16, unixodbc-utf16 +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), unixodbc (>= 2.3.1), odbcinst +SHA256: b1a394d00e0629c862257b9b09507ca712cff7cc4d20f486d4e108bfec164255 +Size: 689450 +Filename: pool/main/m/msodbcsql18/msodbcsql18_18.4.1.1-1_arm64.deb + +Package: mssql-tools18 +Version: 18.4.1.1-1 +Architecture: arm64 +Section: database +Installed-Size: 0 +Maintainer: Microsoft SQL Tools Team +Description: Tools for Microsoft(R) SQL Server(R) + This package provides tools for Microsoft(R) SQL Server(R). +Depends: libc6 (>= 2.19), libstdc++6 (>= 4.8.2), libkrb5-3, openssl, debconf (>= 0.5), msodbcsql18 (>= 18.0.0.0) +SHA256: a85d4ee4107b1479a5a54bc45f8bc1a1c90bf2ba1e086b1c6640b22527aa1316 +Size: 207882 +Filename: pool/main/m/mssql-tools18/mssql-tools18_18.4.1.1-1_arm64.deb + +Package: libmsquic +Version: 2.4.1 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 14052 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 8750192b2ad65d0212095b1f0bb15a9d511a82d418afa1d0b1a0c05aeb9ce8d9 +Size: 4137654 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.1_arm64.deb + +Package: libmsquic +Version: 2.4.3 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 14063 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3t64, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 5312e453c82e154941b600794aa17b079d7938faea3977a413b27ebc4e6d86f3 +Size: 4138082 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.3_arm64.deb + +Package: moby-containerd +Version: 1.6.35-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 102825 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 5284beecdcda2519e4c6a9a091f7dc9793476b455e465411ff60134913d6e076 +Size: 34515422 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.35-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.29.2-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60128 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: f00d7aefa9425701e4bed44a71bcbe7a4b8599eee43267f8f8eff7490ce8f88b +Size: 16828042 +Filename: pool/main/m/moby-compose/moby-compose_2.29.2-ubuntu24.04u1_arm64.deb + +Package: aadsshlogin +Version: 1.0.027890001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.38), libcurl4t64 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3t64 (>= 3.0.0), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 91d5bacf40e36b7165ba202f6cc4a3219904d7a885f1aa0e3f43f33b286eb9c2 +Size: 330084 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.027890001_arm64.deb + +Package: aadsshlogin-selinux +Version: 1.0.027890001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.5-2), selinux-utils, selinux-policy-default +SHA256: 8e138f33c1e3636103221b863244d24ed0bf0b2ac6639b336f9069c4e088f400 +Size: 2222 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.027890001_arm64.deb + +Package: aadsshlogin +Version: 1.0.027980001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.38), libcurl4t64 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3t64 (>= 3.0.0), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 386abc79f0b16c160672e83525b4fe72b997aabd3d25f7c401bb7af1b865643e +Size: 330080 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.027980001_arm64.deb + +Package: aadsshlogin-selinux +Version: 1.0.027980001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.5-2), selinux-utils, selinux-policy-default +SHA256: 3d9b1ae1502efa9758f5b420c379ca95612a96d2ba960a9f6b3caede780680dd +Size: 2226 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.027980001_arm64.deb + +Package: blobfuse2 +Version: 2.3.2 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 24391 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: da295a3a228bbffee4145ea6db87185ec59e4c90eb81cc1f678ee392bb9d7c00 +Size: 12526888 +Filename: pool/main/b/blobfuse2/blobfuse2_2.3.2_arm64.deb + +Package: moby-runc +Version: 1.1.14-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 13104 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.38), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: a4300ea422dd569def884f06cb1af5fdd34063086e59aadc6843a355226c14bb +Size: 6400612 +Filename: pool/main/m/moby-runc/moby-runc_1.1.14-ubuntu24.04u1_arm64.deb + +Package: aziot-identity-service +Version: 1.5.3-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 14703 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.38), libgcc-s1 (>= 4.2), libssl3t64 (>= 3.0.0), libtss2-esys-3.0.2-0t64 (>= 2.3.1), libtss2-mu-4.0.1-0t64 (>= 3.0.1), libtss2-rc0t64 (>= 3.0.1), libtss2-tctildr0t64 (>= 3.0.1), psmisc +SHA256: 22a77bcf0e8f7109aa4040d9a53288f6547fe8e8a4ca3f785897ceac0b5ada13 +Size: 3612880 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.5.3-1_arm64.deb + +Package: aziot-edge +Version: 1.5.10-1 +Architecture: arm64 +Section: admin +Priority: extra +Installed-Size: 14575 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.5.3-1) +SHA256: 1e32342c42ebfcdfe027e1b03910df915b2cbc08c7f9201f25fad0d066086413 +Size: 3575436 +Filename: pool/main/a/aziot-edge/aziot-edge_1.5.10-1_arm64.deb + +Package: moby-containerd +Version: 1.6.36-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 102825 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 38cacbb7bd3ca547fe538707d144990e8dc9d4cb35f6f6fae1dda2f9f3c02b9d +Size: 34522144 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.36-ubuntu24.04u1_arm64.deb + +Package: moby-buildx +Version: 0.17.0-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77535 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 86f3ef38aae274b48ef9657089f1c9b7145142e43ed8c8b0e6e4462c473a0d6f +Size: 33666682 +Filename: pool/main/m/moby-buildx/moby-buildx_0.17.0-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.29.3-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60128 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 5832e3dbba4bea39c428c1eb9a2c6cdcce4044a9822875e28b183bca7115c53a +Size: 16840840 +Filename: pool/main/m/moby-compose/moby-compose_2.29.3-ubuntu24.04u1_arm64.deb + +Package: moby-buildx +Version: 0.17.1-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77537 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: bfc3446f1d0cae8608e6909b393178b4748fa1be633fc12a095e28d0b80fbf3f +Size: 33672392 +Filename: pool/main/m/moby-buildx/moby-buildx_0.17.1-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.29.4-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60128 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 0b976b1ab4fc6fd1f53c71579241ef0560ec11904745494886faf572b46a1c97 +Size: 16838786 +Filename: pool/main/m/moby-compose/moby-compose_2.29.4-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.29.5-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60128 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 8d02e67933829ebe5d5c3a0ed606563e5296ad6b97ad4ca89d571eff6fe42f2b +Size: 16839742 +Filename: pool/main/m/moby-compose/moby-compose_2.29.5-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.29.6-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60128 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 9bc4ce3b0208454100c5b0bade52231b1540fbbf50317209bab082707828f1dc +Size: 16839568 +Filename: pool/main/m/moby-compose/moby-compose_2.29.6-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.29.7-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 60128 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: cc6744fe68709e1e5e2193d2156fd05fa27f6359fd6c7ab0ae6e010ccdedbce5 +Size: 16840248 +Filename: pool/main/m/moby-compose/moby-compose_2.29.7-ubuntu24.04u1_arm64.deb + +Package: libmsquic +Version: 2.4.4 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 14064 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3t64, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: e248a366ce2420df385a933bef48f85dd5ca17c4931dfd821a56c7930c9e2ff9 +Size: 4142524 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.4_arm64.deb + +Package: libmsquic +Version: 2.4.5 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 14064 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3t64, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: f97404ef156afc3fc0ece12ddd2a925ca2a2bddb746c2364a4dc2f35773ba110 +Size: 4142580 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.5_arm64.deb + +Package: moby-runc +Version: 1.1.15-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 13103 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.38), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 934cbdf642ae777731e6cc65f6ae16e0789a86f8de0286521cbe4d3e730538cf +Size: 6399178 +Filename: pool/main/m/moby-runc/moby-runc_1.1.15-ubuntu24.04u1_arm64.deb + +Package: azcmagent +Version: 1.47.02843.49 +Architecture: arm64 +Maintainer: Azure Connected Machine Agent +Description: Azure Connected Machine Agent +Depends: curl, systemd, passwd +Package-Type: deb +SHA256: 53effaab34bd5e779f0818cfdebb84b9c371b7ad9ea3f27c0abeecb8d945428e +Size: 71810338 +Filename: pool/main/a/azcmagent/azcmagent_1.47.02843.49_arm64.deb + +Package: msopenjdk-11 +Version: 11.0.25-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 329527 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 11 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 8a09d27d2ce2ee302a4c7692dad048910214a16362e63ae2b696435b013f6511 +Size: 167594142 +Filename: pool/main/m/msopenjdk-11/msopenjdk-11_11.0.25-1_arm64.deb + +Package: msopenjdk-17 +Version: 17.0.13-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 325487 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 17 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: d8ba907cb5a1abf65c9becb2001a3a6da46456d615bdc33e65769602806ae920 +Size: 162589810 +Filename: pool/main/m/msopenjdk-17/msopenjdk-17_17.0.13-1_arm64.deb + +Package: msopenjdk-21 +Version: 21.0.5-1 +Architecture: arm64 +Section: java +Priority: optional +Installed-Size: 352329 +Maintainer: Microsoft Package Maintainers +Description: Microsoft Build of OpenJDK 21 + Microsoft Build of OpenJDK is an OpenJDK-based development environment to create + applications and components using the Java programming language. +Depends: ca-certificates, java-common, libc6, zlib1g +Recommends: libasound2, libx11-6, libfontconfig1, libfreetype6, libxext6, libxi6, libxrender1, libxtst6, fonts-dejavu-core, fonts-dejavu-extra +Provides: java-compiler, java-runtime, java-runtime-headless, java-sdk, java-sdk-headless, java10-runtime, java10-runtime-headless, java10-sdk, java10-sdk-headless, java11-runtime, java11-runtime-headless, java11-sdk, java11-sdk-headless, java12-runtime, java12-runtime-headless, java12-sdk, java12-sdk-headless, java13-runtime, java13-runtime-headless, java13-sdk, java13-sdk-headless, java14-runtime, java14-runtime-headless, java14-sdk, java14-sdk-headless, java15-runtime, java15-runtime-headless, java15-sdk, java15-sdk-headless, java16-runtime, java16-runtime-headless, java16-sdk, java16-sdk-headless, java17-runtime, java17-runtime-headless, java17-sdk, java17-sdk-headless, java18-runtime, java18-runtime-headless, java18-sdk, java18-sdk-headless, java19-runtime, java19-runtime-headless, java19-sdk, java19-sdk-headless, java2-runtime, java2-runtime-headless, java2-sdk, java2-sdk-headless, java20-runtime, java20-runtime-headless, java20-sdk, java20-sdk-headless, java21-runtime, java21-runtime-headless, java21-sdk, java21-sdk-headless, java5-runtime, java5-runtime-headless, java5-sdk, java5-sdk-headless, java6-runtime, java6-runtime-headless, java6-sdk, java6-sdk-headless, java7-runtime, java7-runtime-headless, java7-sdk, java7-sdk-headless, java8-runtime, java8-runtime-headless, java8-sdk, java8-sdk-headless, java9-runtime, java9-runtime-headless, java9-sdk, java9-sdk-headless +SHA256: 5971a2b7d14097520c36ed38282bf84f924fe92996a39cf329edbe52f3c7602a +Size: 173535550 +Filename: pool/main/m/msopenjdk-21/msopenjdk-21_21.0.5-1_arm64.deb + +Package: symcrypt-openssl +Version: 1.5.1-1~3.0 +Architecture: arm64 +Section: admin +Priority: optional +Maintainer: Microsoft Corp +Description: SymCrypt cryptography integration for OpenSSL +Depends: openssl (>= 3.0.0), openssl (<< 3.1.0), symcrypt +SHA256: a6647e9b5768dbb3ba0b2e257c7902401a1a094cabab29d0048b17a11f7b4aef +Size: 107714 +Filename: pool/main/s/symcrypt-openssl/symcrypt-openssl_1.5.1-1~3.0_arm64.deb + +Package: symcrypt +Version: 103.5.1-1 +Architecture: arm64 +Section: admin +Priority: optional +Maintainer: Microsoft Corp +Description: A core cryptographic library written by Microsoft +SHA256: f5acaee0abadce4313806b67684a834f318ff4b5385e866b57bb8da9f3a46da5 +Size: 256246 +Filename: pool/main/s/symcrypt/symcrypt_103.5.1-1_arm64.deb + +Package: aziot-identity-service +Version: 1.5.4-1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 14639 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Identity Service and related services + This package contains the Azure IoT device runtime, comprised of the following services: + . + - aziot-identityd - The Azure IoT Identity Service + - aziot-certd - The Azure IoT Certificates Service + - aziot-keyd - The Azure IoT Keys Service + - aziot-tpmd - The Azure IoT TPM Service + . + This package also contains the following libraries: + . + - libaziot_keys.so - The library used by the Keys Service to communicate with HSMs for key operations. + - /aziot_keys.so - An openssl engine that can be used to work with asymmetric keys managed by the Azure IoT Keys Service. + . + Lastly, this package contains the aziotctl binary that is used to configure and manage the services. +Homepage: https://github.com/azure/iot-identity-service +Conflicts: iotedge, libiothsm-std +Depends: libc6 (>= 2.38), libgcc-s1 (>= 4.2), libssl3t64 (>= 3.0.0), libtss2-esys-3.0.2-0t64 (>= 2.3.1), libtss2-mu-4.0.1-0t64 (>= 3.0.1), libtss2-rc0t64 (>= 3.0.1), libtss2-tctildr0t64 (>= 3.0.1), psmisc +SHA256: 988cace1ea96f88ff9cadda42269d2872ae66b9baec6dda836f1b3d48fa24c20 +Size: 3610866 +Filename: pool/main/a/aziot-identity-service/aziot-identity-service_1.5.4-1_arm64.deb + +Package: aziot-edge +Version: 1.5.13-1 +Architecture: arm64 +Section: admin +Priority: extra +Installed-Size: 14575 +Maintainer: Azure IoT Edge Devs +Description: Azure IoT Edge Module Runtime + Azure IoT Edge is a fully managed service that delivers cloud intelligence + locally by deploying and running artificial intelligence (AI), Azure services, + and custom logic directly on cross-platform IoT devices. Run your IoT solution + securely and at scale—whether in the cloud or offline. + . + This package contains the IoT Edge daemon and CLI tool. +Homepage: https://github.com/azure/iotedge +Depends: adduser, ca-certificates, hostname, psmisc, sed, aziot-identity-service (= 1.5.4-1) +SHA256: 6dadade8c10c47e147a7c6252e74488bd503a4ce465b4ff20499c69dfb7f7b1a +Size: 3576058 +Filename: pool/main/a/aziot-edge/aziot-edge_1.5.13-1_arm64.deb + +Package: azcopy +Version: 10.27.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 52220 +Maintainer: Azcopy v-Team +Description: A command-line utility that is used to copy data to and from containers and file shares in Azure Storage accounts +Homepage: https://github.com/Azure/azure-storage-azcopy +Vendor: none +License: unknown +SHA256: 6f15e060a1efa2922e7d9ac80f0d206b1d1d4380e0d5d0dae464e6602abcd2c4 +Size: 21882908 +Filename: pool/main/a/azcopy/azcopy_10.27.0_arm64.deb + +Package: moby-compose +Version: 2.30.2-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 61419 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: c7e4d0aac8b4598a9044a8df325d1a60f7dabed0a1683d60cfd9cfa0e513f346 +Size: 17252744 +Filename: pool/main/m/moby-compose/moby-compose_2.30.2-ubuntu24.04u1_arm64.deb + +Package: moby-buildx +Version: 0.18.0-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 78893 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 0b3d9296f78763f326493c34a78078d05fc8509b8729f1ee16d4bde18289fd19 +Size: 34417780 +Filename: pool/main/m/moby-buildx/moby-buildx_0.18.0-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.30.3-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 61419 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: cabe38f25d61b61e6d8d6ca4d40455282aeea926a0690215c716c40352cb8861 +Size: 17256522 +Filename: pool/main/m/moby-compose/moby-compose_2.30.3-ubuntu24.04u1_arm64.deb + +Package: aadsshlogin +Version: 1.0.028680001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: AAD NSS, PAM and certhandler extensions + This package installs NSS, PAM and certhandler extensions to allow SSH login for AAD users. +Conflicts: aadlogin +Depends: libc6 (>= 2.38), libcurl4t64 (>= 7.16.2), libpam0g (>= 0.99.7.1), libselinux1 (>= 3.1~), libsemanage2 (>= 2.0.32), libssl3t64 (>= 3.0.0), libuuid1 (>= 2.16), passwd, openssh-server (>=6.9) +Pre-Depends: grep, sed +SHA256: 2699e111e59fec79b73719ee16a0c6dc7fc1741ae9639cf14026ed24df071372 +Size: 334602 +Filename: pool/main/a/aadsshlogin/aadsshlogin_1.0.028680001_arm64.deb + +Package: aadsshlogin-selinux +Version: 1.0.028680001 +Architecture: arm64 +Section: utils +Priority: optional +Maintainer: Yancho Yanev +Description: Selinux configuration for AAD NSS and PAM extensions. +Conflicts: aadlogin-selinux +Depends: policycoreutils (>=3.5-2), selinux-utils, selinux-policy-default +SHA256: e30ea27f03f8d59170c1dd00a3052c263c470d9e6cc3199829f5e735d0d7dd71 +Size: 2218 +Filename: pool/main/a/aadsshlogin-selinux/aadsshlogin-selinux_1.0.028680001_arm64.deb + +Package: azcopy +Version: 10.27.1 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 52222 +Maintainer: Azcopy v-Team +Description: A command-line utility that is used to copy data to and from containers and file shares in Azure Storage accounts +Homepage: https://github.com/Azure/azure-storage-azcopy +Vendor: none +License: unknown +SHA256: a427d57960d454abc0786150ef9a52ff55f1ff83dfd1bbde7e9989e53ecf32ca +Size: 21886590 +Filename: pool/main/a/azcopy/azcopy_10.27.1_arm64.deb + +Package: moby-buildx +Version: 0.19.0-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 79557 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 03065492126a26ed6dee57b08e6cf4381d917e8ac4718a1775a35df05e0fe6b3 +Size: 34662214 +Filename: pool/main/m/moby-buildx/moby-buildx_0.19.0-ubuntu24.04u1_arm64.deb + +Package: moby-buildx +Version: 0.19.1-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 79515 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: f04a90e4ea5135525f7fa2a543f71ccd5ff93241efed28f08f9318de0b143817 +Size: 34608882 +Filename: pool/main/m/moby-buildx/moby-buildx_0.19.1-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.31.0-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 61562 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: ec2b1f8f05a5663a86e7c05add4dfedf05b49e2cb1ebee73f9425ad4ea895f8e +Size: 17301904 +Filename: pool/main/m/moby-compose/moby-compose_2.31.0-ubuntu24.04u1_arm64.deb + +Package: blobfuse2 +Version: 2.4.0 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 33985 +Maintainer: Blobfuse v-Team +Description: An user-space filesystem for interacting with Azure Storage +Homepage: https://github.com/Azure/azure-storage-fuse +Depends: fuse3 +Vendor: none +License: unknown +SHA256: c3c87316f60a9009339b18ebee04fbd91e168e2946f8b6693d9f3465a7d81a0c +Size: 16377180 +Filename: pool/main/b/blobfuse2/blobfuse2_2.4.0_arm64.deb + +Package: libmsquic +Version: 2.4.7 +Architecture: arm64 +Section: default +Priority: optional +Installed-Size: 14065 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3t64, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: cf09e155fa2c9c6e9d7912543a719f391bcced64a046fe7309a06f82212513b1 +Size: 4137110 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.7_arm64.deb + +Package: moby-engine +Version: 27.3.1-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 77558 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 9e68edf98193883b29590a6d02a7be017bd581489ee54330f27adc70d4f4b5de +Size: 23992920 +Filename: pool/main/m/moby-engine/moby-engine_27.3.1-ubuntu24.04u1_arm64.deb + +Package: moby-cli +Version: 27.3.1-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 38745 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 32ae96a2919be65f95f87fe2e3fa63b365445331a627c413bad0ac15e804bb3e +Size: 16411598 +Filename: pool/main/m/moby-cli/moby-cli_27.3.1-ubuntu24.04u1_arm64.deb + +Package: moby-buildx +Version: 0.19.2-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 79515 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: f9cf38d9a0f5b50fe9cc544e54750534d5908ed05199c72d0a4cef1b9e95cf09 +Size: 34613814 +Filename: pool/main/m/moby-buildx/moby-buildx_0.19.2-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.32.0-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 62039 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 0fb4c82945bb006b019f111774e9e59513ff2fb2ab3997b2f17d19335d3e9f9c +Size: 17295068 +Filename: pool/main/m/moby-compose/moby-compose_2.32.0-ubuntu24.04u1_arm64.deb + +Package: moby-buildx +Version: 0.19.3-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 79518 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 26ffcad59b696b4b0aff357b577de93a9e0569af9d7faaae3f5edce893dccede +Size: 34514500 +Filename: pool/main/m/moby-buildx/moby-buildx_0.19.3-ubuntu24.04u1_arm64.deb + +Package: moby-compose +Version: 2.32.1-ubuntu24.04u1 +Architecture: arm64 +Section: admin +Priority: optional +Installed-Size: 62039 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 82b95f1e91a116974204f9a0d0141eb4ae29281397b8e0e9ef8f6f5e4c374a43 +Size: 17294982 +Filename: pool/main/m/moby-compose/moby-compose_2.32.1-ubuntu24.04u1_arm64.deb + diff --git a/apt_cache/lists/packages.microsoft.com_ubuntu_24.04_prod_dists_noble_main_binary-armhf_Packages b/apt_cache/lists/packages.microsoft.com_ubuntu_24.04_prod_dists_noble_main_binary-armhf_Packages new file mode 100644 index 000000000..38a4ee1e4 --- /dev/null +++ b/apt_cache/lists/packages.microsoft.com_ubuntu_24.04_prod_dists_noble_main_binary-armhf_Packages @@ -0,0 +1,1194 @@ +Package: moby-tini +Version: 0.19.0-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 384 +Maintainer: Microsoft +Description: tiny but valid init for containers + Tini is the simplest init you could think of. + . + All Tini does is spawn a single child (Tini is meant to be run in a + container), and wait for it to exit all the while reaping zombies and + performing signal forwarding. +Homepage: https://github.com/krallin/tini +SHA256: 13a8a919d0a9783da60fa38d3a789f0c873c3b25f57ee6fa3b4e712b46010457 +Size: 228032 +Filename: pool/main/m/moby-tini/moby-tini_0.19.0-ubuntu24.04u1_armhf.deb + +Package: moby-engine +Version: 24.0.9-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 63639 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), libdevmapper1.02.1 (>= 2:1.02.97), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 2be8783988730a2823d4f0c20f8b242a8e988cbf071cb2992f62785c4263eaee +Size: 21816478 +Filename: pool/main/m/moby-engine/moby-engine_24.0.9-ubuntu24.04u1_armhf.deb + +Package: moby-buildx +Version: 0.14.0-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 74569 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 2e1c88eae08ba0112ca7bd81d51b8744e2966376354002816fd613237d003808 +Size: 32841558 +Filename: pool/main/m/moby-buildx/moby-buildx_0.14.0-ubuntu24.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.31-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 100232 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 96474e125223488f524ca7d1c565548b0e2f3e4d167d1b205fcbc0e7df99179c +Size: 35534956 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.31-ubuntu24.04u1_armhf.deb + +Package: moby-runc +Version: 1.1.12-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 12188 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.38), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 8563293b33358e4ad2e7213c714fa32dfb3fff3edea9ce2893109acae53b29b4 +Size: 6217344 +Filename: pool/main/m/moby-runc/moby-runc_1.1.12-ubuntu24.04u1_armhf.deb + +Package: moby-cli +Version: 24.0.9-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 32674 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: f09d811ba5d0aafe571c767865813be7c1c2a62f888e920c27aee7c26d4174c5 +Size: 14650266 +Filename: pool/main/m/moby-cli/moby-cli_24.0.9-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.26.1-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58337 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: f150e6e56c7b8b516c109383a48a7c0b0e9dd48c5aadf7fdacd5c994dd87a0c3 +Size: 17181010 +Filename: pool/main/m/moby-compose/moby-compose_2.26.1-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.27.0-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58626 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 3e0c1a2f5c92a9b3846d42779604965e5a88a0623f00a2f9d4ba2bf70eaeecff +Size: 17268260 +Filename: pool/main/m/moby-compose/moby-compose_2.27.0-ubuntu24.04u1_armhf.deb + +Package: moby-engine +Version: 26.1.1-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71915 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 288eb6a0950fec713929bca0b7efb8423b9a752bf2463fa90dbbe33a11975e70 +Size: 24083188 +Filename: pool/main/m/moby-engine/moby-engine_26.1.1-ubuntu24.04u1_armhf.deb + +Package: moby-cli +Version: 26.1.1-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 35957 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: e26a300fcae8acd8b2c904c64ac8b9b183a8854d2728f5df7bd8699660f8e32b +Size: 15942004 +Filename: pool/main/m/moby-cli/moby-cli_26.1.1-ubuntu24.04u1_armhf.deb + +Package: moby-engine +Version: 26.1.2-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71915 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 74938327cf0b4f2847a5d4bcdd02ba1a9866775c6d09ab225267b1b90553f54b +Size: 24083020 +Filename: pool/main/m/moby-engine/moby-engine_26.1.2-ubuntu24.04u1_armhf.deb + +Package: moby-cli +Version: 26.1.2-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 35962 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: c82c91f826368c81be9d28e1aae726e6e3922e49c3d4d8303d194863661a4f89 +Size: 15943116 +Filename: pool/main/m/moby-cli/moby-cli_26.1.2-ubuntu24.04u1_armhf.deb + +Package: moby-cli +Version: 26.1.3-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 35969 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 3fd137520011700a00736588f6a0d619467357a09104442c37f1ed8501cf16d0 +Size: 15946914 +Filename: pool/main/m/moby-cli/moby-cli_26.1.3-ubuntu24.04u1_armhf.deb + +Package: moby-engine +Version: 26.1.3-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71919 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 7980c872a222a164bfa9641e333899cb4d6a1c7d834c81fa993300c444fed452 +Size: 24082228 +Filename: pool/main/m/moby-engine/moby-engine_26.1.3-ubuntu24.04u1_armhf.deb + +Package: moby-buildx +Version: 0.14.1-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 74575 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 8e0edb50ae7c1ff4ea705995810a1935b94347e8ab420c874ce6c52e378793c2 +Size: 32849998 +Filename: pool/main/m/moby-buildx/moby-buildx_0.14.1-ubuntu24.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.32-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 100643 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 59819229bc7a908c0719dac6ed96310db30ab56534d43029ed68a49bf05e34fc +Size: 35699756 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.32-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.27.1-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58630 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 4577d16a7c4bd6f07394401f9cf452d65b6d898af2c594cc750006f5536167f5 +Size: 17278862 +Filename: pool/main/m/moby-compose/moby-compose_2.27.1-ubuntu24.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.33-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 100647 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 0da17421702e145313e1e616f31c2ee827a3ecea465f52aaaa0ff3a8a0666aac +Size: 35700224 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.33-ubuntu24.04u1_armhf.deb + +Package: moby-engine +Version: 26.1.4-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71923 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 164000f4a3172fa8503215e4e62f3d9dffc751d06c62830b24009bd3c0583e52 +Size: 24081788 +Filename: pool/main/m/moby-engine/moby-engine_26.1.4-ubuntu24.04u1_armhf.deb + +Package: moby-cli +Version: 26.1.4-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 35969 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: fce8b9eed2dd9726f16f424ce7765cb4e72c1ea02d59153aa3978aeba3ef2c26 +Size: 15941104 +Filename: pool/main/m/moby-cli/moby-cli_26.1.4-ubuntu24.04u1_armhf.deb + +Package: moby-buildx +Version: 0.15.0-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 74844 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: db42421b246e245e7a9449fd0ae2246ca27793059b5580240cd1b11a520b3ff9 +Size: 33004784 +Filename: pool/main/m/moby-buildx/moby-buildx_0.15.0-ubuntu24.04u1_armhf.deb + +Package: moby-runc +Version: 1.1.13-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 12190 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.38), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: b048e9e58b90199be43ee841871e139657d7d53156a2966323d1c0fd80b0d4a8 +Size: 6220002 +Filename: pool/main/m/moby-runc/moby-runc_1.1.13-ubuntu24.04u1_armhf.deb + +Package: moby-buildx +Version: 0.15.1-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 74832 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: f484f350c81305880179e1eeaa4368c8d2a3d9dc97de77ad8159cbf016c45d50 +Size: 32993200 +Filename: pool/main/m/moby-buildx/moby-buildx_0.15.1-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.28.0-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58685 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: ea4f6468044ac961fb64592ac716bcabf89d2edcdd017083cf0595ccc15e8bdb +Size: 17289738 +Filename: pool/main/m/moby-compose/moby-compose_2.28.0-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.28.1-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58685 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: b9f8628724637e258f4e52d94b501f5d3a07e0ccbb27433be537de277eedbb9b +Size: 17290938 +Filename: pool/main/m/moby-compose/moby-compose_2.28.1-ubuntu24.04u1_armhf.deb + +Package: moby-buildx +Version: 0.16.0-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 75086 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: e2b7d3e0da1d23814df89f00dfac4ff8c08ca292e268749eaa6c09f150cff295 +Size: 33097356 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.0-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.29.0-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58819 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 055b691902d339a5962b1b3fceae40bd2728cb0b6d4de53cabcc465366570d76 +Size: 17314672 +Filename: pool/main/m/moby-compose/moby-compose_2.29.0-ubuntu24.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.34-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 100648 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 7f23bab4935cd8c46a7e0fa6250a5e01ff992b8840e43821650edd34d021bf90 +Size: 35705436 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.34-ubuntu24.04u1_armhf.deb + +Package: moby-buildx +Version: 0.16.1-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 75086 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 78ea4a9c32aa3a84ada5d1d9a3e5762c4e44f3d06d98d1f27ef8efff10476069 +Size: 33097662 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.1-ubuntu24.04u1_armhf.deb + +Package: moby-cli +Version: 27.0.3-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 36036 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: a51b1433d9d56ff369fdff76d62af57ded26362b573078a4b6a395979a573cfe +Size: 15972782 +Filename: pool/main/m/moby-cli/moby-cli_27.0.3-ubuntu24.04u1_armhf.deb + +Package: moby-engine +Version: 27.0.3-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71935 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: af29baf281087d7c10b9bcecea6c27e17684fdc160b846c1e4c22748bb746064 +Size: 24125466 +Filename: pool/main/m/moby-engine/moby-engine_27.0.3-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.29.1-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58819 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 961e9bef77c04479f8135034205a68038a4e891c1cdb8f4f5284de28db176079 +Size: 17318910 +Filename: pool/main/m/moby-compose/moby-compose_2.29.1-ubuntu24.04u1_armhf.deb + +Package: moby-engine +Version: 26.1.5-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 71922 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 727f1cf8629e16a4ea053a4c10b960f63471a4597d1422ac3f1e1e9534f8a1e1 +Size: 24086236 +Filename: pool/main/m/moby-engine/moby-engine_26.1.5-ubuntu24.04u1_armhf.deb + +Package: moby-buildx +Version: 0.16.2-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 75086 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: c8ac8426d9d103ab3fd5e8e3e1a07d809a303d02d729cfa1c7981be8f7b2b352 +Size: 33097686 +Filename: pool/main/m/moby-buildx/moby-buildx_0.16.2-ubuntu24.04u1_armhf.deb + +Package: libmsquic +Version: 2.4.0 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12946 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 25ffde3b2c8509d2263ccb2f6194c7c732933a6492d1dc10fe8e12240922cf97 +Size: 4089358 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.0_armhf.deb + +Package: moby-cli +Version: 26.1.5-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 35969 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 439dac4bbc3d5641c3c1fce129fad15427febdc349204776ea8ebb0235e981a6 +Size: 15944174 +Filename: pool/main/m/moby-cli/moby-cli_26.1.5-ubuntu24.04u1_armhf.deb + +Package: libmsquic +Version: 2.4.1 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12950 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 7a68a6cdb524c32d9a5ec594b50c69cd28b566bb66df672eba42e83e5f73293e +Size: 4097970 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.1_armhf.deb + +Package: libmsquic +Version: 2.4.3 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12964 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3t64, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: b7441dc3950df60aef7415ee604f13a0aae634446a25567a01e9990e58d250ad +Size: 4095814 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.3_armhf.deb + +Package: moby-containerd +Version: 1.6.35-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 100648 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: 9799fc881187abfe9e5542ab30ba4d9eb6eae14a319acc864d76aa377c069706 +Size: 35707118 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.35-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.29.2-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58820 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: f09e8a3102d64b39db818a0d2db19fd9ab1183aa407474bbb2c96a85877ddfbd +Size: 17325538 +Filename: pool/main/m/moby-compose/moby-compose_2.29.2-ubuntu24.04u1_armhf.deb + +Package: moby-runc +Version: 1.1.14-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 12267 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.38), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 754dcb1fb0983a6a7892d12199aa85a9d54784033fd4ec58a1266ed77b437bcf +Size: 6259488 +Filename: pool/main/m/moby-runc/moby-runc_1.1.14-ubuntu24.04u1_armhf.deb + +Package: moby-containerd +Version: 1.6.36-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 100652 +Maintainer: Microsoft +Description: Industry-standard container runtime + containerd is an industry-standard container runtime with an emphasis on + simplicity, robustness and portability. It is available as a daemon for Linux + and Windows, which can manage the complete container lifecycle of its host + system: image transfer and storage, container execution and supervision, + low-level storage and network attachments, etc. + . + containerd is designed to be embedded into a larger system, rather than being + used directly by developers or end-users. +Homepage: https://github.com/containerd/containerd +Conflicts: containerd, containerd.io, moby-engine (<= 3.0.12) +Depends: libc6 (>= 2.34), moby-runc (>= 1.0.2) +Recommends: ca-certificates +Provides: containerd, containerd.io +Replaces: containerd, containerd.io +SHA256: c0e89cc9fa786bbd9d83aedead887f8d8ee0501b52755ba92a6cd17252e7cfda +Size: 35706172 +Filename: pool/main/m/moby-containerd/moby-containerd_1.6.36-ubuntu24.04u1_armhf.deb + +Package: moby-buildx +Version: 0.17.0-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 75112 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 2d21ac613f24401882216d5dce433b2f59c03e601ec5a3e8d850247e0f3ffbbb +Size: 33152298 +Filename: pool/main/m/moby-buildx/moby-buildx_0.17.0-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.29.3-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58820 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: fb92aae8f18d0c48351d0bade6fa9faeb822b97853879c8086625103611d2229 +Size: 17336764 +Filename: pool/main/m/moby-compose/moby-compose_2.29.3-ubuntu24.04u1_armhf.deb + +Package: moby-buildx +Version: 0.17.1-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 75117 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 34834cd1623dd240fd1bac89c6f901bdcc2be5a1ecc1ce0b47be2501354d0a11 +Size: 33159324 +Filename: pool/main/m/moby-buildx/moby-buildx_0.17.1-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.29.4-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58820 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: c94b0e548b1019bf2b6fc36ac52156fdae7001fd99c0043f580bdd833d3fbda1 +Size: 17334988 +Filename: pool/main/m/moby-compose/moby-compose_2.29.4-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.29.5-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58820 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 998353158df1b318c6cb538ae3794c0ed1f973556617e9cabdaa43e68a3c7381 +Size: 17335206 +Filename: pool/main/m/moby-compose/moby-compose_2.29.5-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.29.6-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58820 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 2baa245f7c83e7c3621c33cd3c509b27aab2f819fa92657fd033a8836d25040c +Size: 17336134 +Filename: pool/main/m/moby-compose/moby-compose_2.29.6-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.29.7-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 58820 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: d5560dd231c76895170f2d511590ef22807186fe967d5449c5b5244ae4c37fb8 +Size: 17335888 +Filename: pool/main/m/moby-compose/moby-compose_2.29.7-ubuntu24.04u1_armhf.deb + +Package: libmsquic +Version: 2.4.4 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12966 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3t64, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 47d0464ca45b4700e72bbd6bec7b1324f945dd33765cec72f1391a50bd16cdf3 +Size: 4103920 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.4_armhf.deb + +Package: libmsquic +Version: 2.4.5 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12966 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3t64, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 921764d88a802f77f4904495a35f9aa910fae645a953b8507c441c67901546e7 +Size: 4103740 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.5_armhf.deb + +Package: moby-runc +Version: 1.1.15-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 12266 +Maintainer: Microsoft +Description: CLI tool for spawning and running containers according to the OCI specification + runc is a CLI tool for spawning and running containers according to the OCI + specification. +Homepage: https://github.com/opencontainers/runc +Conflicts: moby-engine (<= 3.0.10), runc +Depends: libc6 (>= 2.38), libseccomp2 (>= 2.5.0) +Provides: runc +Replaces: runc +SHA256: 95678cebc17066280a8667a3d309df360bea4b8ff36c6a25cdbfbb221a8c6b0d +Size: 6258692 +Filename: pool/main/m/moby-runc/moby-runc_1.1.15-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.30.2-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 59523 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 13633cd578eb2784bb2ab004fedebe550835e2417e5af1702edbf968fb580c4f +Size: 17610364 +Filename: pool/main/m/moby-compose/moby-compose_2.30.2-ubuntu24.04u1_armhf.deb + +Package: moby-buildx +Version: 0.18.0-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 75868 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 1cd5fa5c9dcbbda3cb4878fcf584ed8f07220c38f3d155c987c1e253502e8820 +Size: 33519424 +Filename: pool/main/m/moby-buildx/moby-buildx_0.18.0-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.30.3-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 59523 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 8e27220e226c12ae918e1ad6748cc18c6ee7726941505385f6886dcb7844ba42 +Size: 17609616 +Filename: pool/main/m/moby-compose/moby-compose_2.30.3-ubuntu24.04u1_armhf.deb + +Package: moby-buildx +Version: 0.19.0-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 76450 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: bd729f6cbd835e0c94be6561e58227766afaba3a720ebdf98d093b3c9a0d212b +Size: 33756968 +Filename: pool/main/m/moby-buildx/moby-buildx_0.19.0-ubuntu24.04u1_armhf.deb + +Package: moby-buildx +Version: 0.19.1-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 76359 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 31b770ec917cfbf4de9a7dcd01233d2a3a10efca8b265bb6b12891d691471502 +Size: 33717046 +Filename: pool/main/m/moby-buildx/moby-buildx_0.19.1-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.31.0-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 59828 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 32407075042e53aac09d56c98b0905a70c4966cd692300eab24a50353c2e8f80 +Size: 17654386 +Filename: pool/main/m/moby-compose/moby-compose_2.31.0-ubuntu24.04u1_armhf.deb + +Package: libmsquic +Version: 2.4.7 +Architecture: armhf +Section: default +Priority: optional +Installed-Size: 12966 +Maintainer: Microsoft QUIC Team +Description: Microsoft implementation of the IETF QUIC protocol +Homepage: https://github.com/microsoft/msquic +Conflicts: libmsquic-debug +Depends: libssl3t64, libnuma1 +Provides: libmsquic +Vendor: Microsoft +License: MIT +SHA256: 495d849ed82942ab4d0a86f61a165a1aa5979d142b6a39b8f012e0c96ebe3da6 +Size: 4095868 +Filename: pool/main/libm/libmsquic/libmsquic_2.4.7_armhf.deb + +Package: moby-engine +Version: 27.3.1-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 72288 +Maintainer: Microsoft +Description: Docker container platform (engine package) + Moby is an open-source project created by Docker to enable and accelerate software containerization. +Homepage: https://github.com/moby/moby +Conflicts: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34), moby-containerd (>= 1.4.3), moby-runc (>= 1.0.2), moby-tini (>= 0.19.0) +Recommends: apparmor, ca-certificates, iptables, kmod, moby-cli, pigz, xz-utils +Replaces: docker, docker-ce, docker-ee, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 6a8a82b0dba37c9142109d8d1b39662e274e5fe1706b213f66a016ac79627a44 +Size: 24299860 +Filename: pool/main/m/moby-engine/moby-engine_27.3.1-ubuntu24.04u1_armhf.deb + +Package: moby-cli +Version: 27.3.1-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 36660 +Maintainer: Microsoft +Description: Docker container platform (client package) + Docker is a platform for developers and sysadmins to develop, ship, and run + applications. Docker lets you quickly assemble applications from components and + eliminates the friction that can come when shipping code. Docker lets you get + your code tested and deployed into production as fast as possible. + . + This package provides the "docker" client binary (and supporting files). +Homepage: https://github.com/docker/cli +Conflicts: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +Depends: libc6 (>= 2.34) +Recommends: ca-certificates, git, moby-buildx, pigz, xz-utils +Replaces: docker, docker-ce, docker-ce-cli, docker-ee, docker-ee-cli, docker-engine, docker-engine-cs, docker.io, lxc-docker, lxc-docker-virtual-package +SHA256: 5103d93faaf0c1b277c8cf6a5a7e2a493ca2be62a6969736268c597dc5fbb2ba +Size: 16233464 +Filename: pool/main/m/moby-cli/moby-cli_27.3.1-ubuntu24.04u1_armhf.deb + +Package: moby-buildx +Version: 0.19.2-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 76362 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 2f5f09a49d39240fe1f4a021db3909dec10dc1f6bd8d1f1bf921edd895b91ecf +Size: 33721842 +Filename: pool/main/m/moby-buildx/moby-buildx_0.19.2-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.32.0-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 60231 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 505dd7902f9952684f36f314cecaef7928b77cde22bf6fba75213f386751ffd3 +Size: 17600380 +Filename: pool/main/m/moby-compose/moby-compose_2.32.0-ubuntu24.04u1_armhf.deb + +Package: moby-buildx +Version: 0.19.3-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 76363 +Maintainer: Microsoft +Description: A Docker CLI plugin for extended build capabilities with BuildKit +Homepage: https://github.com/docker/buildx +Conflicts: docker-buildx-plugin, docker-ce, docker-ee +Depends: libc6 (>= 2.34) +Recommends: moby-cli +Replaces: docker-buildx-plugin +SHA256: 6365f07af870a3873fad925b6f0bff8949181021fc44e5dc2ad1d8b56de2170b +Size: 33572452 +Filename: pool/main/m/moby-buildx/moby-buildx_0.19.3-ubuntu24.04u1_armhf.deb + +Package: moby-compose +Version: 2.32.1-ubuntu24.04u1 +Architecture: armhf +Section: admin +Priority: optional +Installed-Size: 60231 +Maintainer: Microsoft +Description: A Docker CLI plugin which allows you to run Docker Compose applications from the Docker CLI. +Homepage: https://github.com/docker/compose-cli +Conflicts: docker-ce, docker-ce-cli, docker-ee, docker-ee-cli +Depends: libc6 (>= 2.34), moby-cli +SHA256: 8190a322e23955a62e2ba36cec674cf22fa55a63eb46dc0378dc83bd52d33694 +Size: 17600430 +Filename: pool/main/m/moby-compose/moby-compose_2.32.1-ubuntu24.04u1_armhf.deb + diff --git a/assessment/index.html b/assessment/index.html new file mode 100644 index 000000000..60e6105b5 --- /dev/null +++ b/assessment/index.html @@ -0,0 +1 @@ +Assessment and Impact

Assessment and Impact

As scientists, engineers, and teachers, the HPC Carpentry community embraces feedback and the opportunity to learn and improve delivery of our lesson content. We lean on The Carpentries’ robust survey infrastructure to assess our learners backgrounds before, and outcomes following, each HPC Carpentry workshop.

Please visit the official website for more information about The Carpentries’ Assessment efforts.

diff --git a/assets/css/academicons.min.css b/assets/css/academicons.min.css new file mode 100755 index 000000000..09aada772 --- /dev/null +++ b/assets/css/academicons.min.css @@ -0,0 +1 @@ +.ai-ul,.fa-ul{list-style-type:none}.ai-li,.fa-li{top:.14285714em;text-align:center}.ai-fw,.ai-li,.fa-fw,.fa-li{text-align:center}.ai.fa-pull-left,.fa.fa-pull-left{margin-right:.3em}@font-face{font-family:Academicons;src:url(../fonts/academicons.eot?v=1.8.6);src:url(../fonts/academicons.eot?v=1.8.6) format('embedded-opentype'),url(../fonts/academicons.ttf?v=1.8.6) format('truetype'),url(../fonts/academicons.woff?v=1.8.6) format('woff'),url(../fonts/academicons.svg?v=1.8.6#academicons) format('svg');font-weight:400;font-style:normal}.ai{display:inline-block;font:normal normal normal 14px/1 Academicons;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ai-lg,.fa-lg{line-height:.75em;vertical-align:-15%}.ai-academia:before{content:"\e9af"}.ai-academia-square:before{content:"\e93d"}.ai-acclaim:before{content:"\e92e"}.ai-acclaim-square:before{content:"\e93a"}.ai-acm:before{content:"\e93c"}.ai-acm-square:before{content:"\e95d"}.ai-acmdl:before{content:"\e96a"}.ai-acmdl-square:before{content:"\e9d3"}.ai-ads:before{content:"\e9cb"}.ai-ads-square:before{content:"\e94a"}.ai-arxiv:before{content:"\e974"}.ai-arxiv-square:before{content:"\e9a6"}.ai-biorxiv:before{content:"\e9a2"}.ai-biorxiv-square:before{content:"\e98b"}.ai-ceur:before{content:"\e96d"}.ai-ceur-square:before{content:"\e92f"}.ai-coursera:before{content:"\e95f"}.ai-coursera-square:before{content:"\e97f"}.ai-cv:before{content:"\e9a5"}.ai-cv-square:before{content:"\e90a"}.ai-dataverse:before{content:"\e9f7"}.ai-dataverse-square:before{content:"\e9e4"}.ai-dblp:before{content:"\e94f"}.ai-dblp-square:before{content:"\e93f"}.ai-depsy:before{content:"\e97a"}.ai-depsy-square:before{content:"\e94b"}.ai-doi:before{content:"\e97e"}.ai-doi-square:before{content:"\e98f"}.ai-dryad:before{content:"\e97c"}.ai-dryad-square:before{content:"\e98c"}.ai-figshare:before{content:"\e981"}.ai-figshare-square:before{content:"\e9e7"}.ai-google-scholar:before{content:"\e9d4"}.ai-google-scholar-square:before{content:"\e9f9"}.ai-ideas-repec:before{content:"\e9ed"}.ai-ideas-repec-square:before{content:"\e9f8"}.ai-ieee:before{content:"\e929"}.ai-ieee-square:before{content:"\e9b9"}.ai-impactstory:before{content:"\e9cf"}.ai-impactstory-square:before{content:"\e9aa"}.ai-inspire:before{content:"\e9e9"}.ai-inspire-square:before{content:"\e9fe"}.ai-lattes:before{content:"\e9b3"}.ai-lattes-square:before{content:"\e99c"}.ai-mathoverflow:before{content:"\e9f6"}.ai-mathoverflow-square:before{content:"\e97b"}.ai-mendeley:before{content:"\e9f0"}.ai-mendeley-square:before{content:"\e9f3"}.ai-open-access:before{content:"\e939"}.ai-open-access-square:before{content:"\e9f4"}.ai-orcid:before{content:"\e9d9"}.ai-orcid-square:before{content:"\e9c3"}.ai-osf:before{content:"\e9ef"}.ai-osf-square:before{content:"\e931"}.ai-overleaf:before{content:"\e914"}.ai-overleaf-square:before{content:"\e98d"}.ai-philpapers:before{content:"\e98a"}.ai-philpapers-square:before{content:"\e96f"}.ai-piazza:before{content:"\e99a"}.ai-piazza-square:before{content:"\e90c"}.ai-publons:before{content:"\e937"}.ai-publons-square:before{content:"\e94e"}.ai-pubmed:before{content:"\e99f"}.ai-pubmed-square:before{content:"\e97d"}.ai-researcherid:before{content:"\e91a"}.ai-researcherid-square:before{content:"\e95c"}.ai-researchgate:before{content:"\e95e"}.ai-researchgate-square:before{content:"\e99e"}.ai-scirate:before{content:"\e98e"}.ai-scirate-square:before{content:"\e99d"}.ai-semantic-scholar:before{content:"\e96e"}.ai-semantic-scholar-square:before{content:"\e96c"}.ai-springer:before{content:"\e928"}.ai-springer-square:before{content:"\e99b"}.ai-zotero:before{content:"\e962"}.ai-zotero-square:before{content:"\e932"}.ai-lg{font-size:1.33333333em}.ai-2x{font-size:2em}.ai-3x{font-size:3em}.ai-4x{font-size:4em}.ai-5x{font-size:5em}.ai-fw{width:1.28571429em}.ai-ul{padding-left:0;margin-left:2.14285714em}.ai-ul>li{position:relative}.ai-li{position:absolute;left:-2.14285714em;width:2.14285714em}.ai-li.fa-lg{left:-1.85714286em}.ai-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.ai-pull-left{float:left}.ai-pull-right{float:right}.ai.fa-pull-right{margin-left:.3em}.fa-lg{font-size:1.33333333em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em}.fa-ul{padding-left:0;margin-left:2.14285714em}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-right{margin-left:.3em} \ No newline at end of file diff --git a/assets/css/atom.css b/assets/css/atom.css new file mode 100644 index 000000000..e45a501e2 --- /dev/null +++ b/assets/css/atom.css @@ -0,0 +1 @@ +.font-size-h1{font-size:2.441em}.font-size-h2{font-size:1.953em}.font-size-h3{font-size:1.563em}.font-size-h4{font-size:1.25em}.font-size-h5{font-size:1.152em}meta.foundation-version{font-family:"/5.5.0/"}meta.foundation-mq-small{font-family:"/only screen/";width:0em}meta.foundation-mq-small-only{font-family:"/only screen and (max-width: 40em)/";width:0em}meta.foundation-mq-medium{font-family:"/only screen and (min-width:40.063em)/";width:40.063em}meta.foundation-mq-medium-only{font-family:"/only screen and (min-width:40.063em) and (max-width:64em)/";width:40.063em}meta.foundation-mq-large{font-family:"/only screen and (min-width:64.063em)/";width:64.063em}meta.foundation-mq-large-only{font-family:"/only screen and (min-width:64.063em) and (max-width:90em)/";width:64.063em}meta.foundation-mq-xlarge{font-family:"/only screen and (min-width:90.063em)/";width:90.063em}meta.foundation-mq-xlarge-only{font-family:"/only screen and (min-width:90.063em) and (max-width:120em)/";width:90.063em}meta.foundation-mq-xxlarge{font-family:"/only screen and (min-width:120.063em)/";width:120.063em}meta.foundation-data-attribute-namespace{font-family:false}*{display:block}:root{margin:3em;background:#fdfdfd;color:#111;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}feed>title{text-align:center;color:#ff893b;font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:3.6615em;font-weight:bolder}feed>title::before{content:'Atom Feed for ';font-weight:initial}feed>title::after{content:"This Atom feed is meant to be used by RSS reader applications and websites.";display:block;padding:1em;background-color:#DF4949;color:#fff;font-family:initial;font-size:initial;letter-spacing:initial}feed>id,feed>updated,feed>subtitle,feed>author,feed>link,feed>generator{display:none}entry{padding:1em 0;border-bottom:1px solid #020202}entry:last-child{border-bottom:none}entry>title{color:#FDEBD0;font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:2.441em;margin-bottom:0.5em}entry>link::after{content:attr(href);color:#BA4A00}entry>updated{color:#A4A4A4;font-size:small}entry>summary{margin-top:1em}entry>id,entry>author,entry>category,entry>published,entry>content{display:none} diff --git a/assets/css/extras.css b/assets/css/extras.css new file mode 100644 index 000000000..b85706cf4 --- /dev/null +++ b/assets/css/extras.css @@ -0,0 +1,194 @@ +.list-inline { + padding-left: 0; + list-style: none; + margin-left: -5px; +} + + +.img-circle { + border-radius: 50%; +} + +.list-inline>li { + display: inline-block; + padding-left: 5px; + padding-right: 5px; +} + +ul.social-buttons { + margin-bottom: 0; + +} + +ul.social-buttons li a { + display: block; + width: 25px; + height: 25px; + border-radius: 100%; + font-size: 15px; + line-height: 25px; + outline: 0; + color: #fff; + background-color: #999; + -webkit-transition: all .3s; + -moz-transition: all .3s; + transition: all .3s; + font-weight: normal; +} + +ul, menu, dir { + display: block; + list-style-type: disc; + -webkit-margin-start: 0px; + -webkit-margin-end: 0px; + -webkit-padding-start: 40px; +} + +.text-muted { + color: #777; +} + + +.anchor-offset { + padding-top: 50px; + margin-top: -50px; +} + +.team-member { + margin-bottom: 50px; + text-align: center; +} + +.team-member img { + margin: 0 auto; + border: 7px solid #fff; +} + +.team-member h4 { + margin-top: 25px; + margin-bottom: 0; + text-transform: none; +} + +.team-member p { + margin-top: 0; +} + +.callout-wrap-large .callout-circle { + box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.17), 2px 3px 3px rgba(0, 0, 0, 0.22); + width: 190px; + height: 190px; + border-radius: 95px; + -webkit-border-radius: 95px; + -moz-border-radius: 95px; + line-height: 190px; +} + + +.callout-circle { + background: #071159; + background-size: cover; + width: 110px; + border-radius: 55px; + -webkit-border-radius: 55px; + -moz-border-radius: 55px; + height: 110px; + line-height: 110px; + text-align: center; + margin: 0.25em auto; + color: #FFFFFF; + font-family: 'Open Sans', Arial, Helvetica, sans-serif; + font-size: 2.6em; + font-weight: 600; +} + + +.card_link { + text-decoration: none; + cursor: pointer; +} +h1[id]:before, +h2[id]:before, +h3[id]:before, +h4[id]:before { + display: block; + content: " "; + margin-top: -50px; + height: 50px; + visibility: hidden; + position: relative; + z-index: -1; +} + +.card { +border-radius: 9px; +background: #e3e6fd; +margin: 10px; +padding: 20px; +} + +.values { + padding-bottom:20%; +} +.values img { + float: right; + width:30%; +} + +.flags { + max-width: inherit; + height: auto; +} + +.pre-alpha { + background: #f04124; +} + +.alpha { + background: #f08a24; +} + +.beta { + background: #a0d3e8; +} + +.stable { + background: #43ac6a; +} + +.carpentries-incubator { + background: #5B2A86; +} + +.carpentrieslab { + background: #9AC6C5; +} + +.edit-on-github { + color: #7E7E7E; +} + +.icon::before { + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + -webkit-font-smoothing: antialiased; +} + +div.checklist { + margin-left: -1em; +} + +.checklist li::before { + font-family: "Font Awesome 5 Free"; font-weight: 400; content: "\f0c8"; + padding-right: .5em; +} + +.checklist ul { + list-style-type: none; +} + +.checklist li { + +} diff --git a/assets/css/rss.css b/assets/css/rss.css new file mode 100644 index 000000000..6e72af9d4 --- /dev/null +++ b/assets/css/rss.css @@ -0,0 +1 @@ +.font-size-h1{font-size:2.441em}.font-size-h2{font-size:1.953em}.font-size-h3{font-size:1.563em}.font-size-h4{font-size:1.25em}.font-size-h5{font-size:1.152em}meta.foundation-version{font-family:"/5.5.0/"}meta.foundation-mq-small{font-family:"/only screen/";width:0em}meta.foundation-mq-small-only{font-family:"/only screen and (max-width: 40em)/";width:0em}meta.foundation-mq-medium{font-family:"/only screen and (min-width:40.063em)/";width:40.063em}meta.foundation-mq-medium-only{font-family:"/only screen and (min-width:40.063em) and (max-width:64em)/";width:40.063em}meta.foundation-mq-large{font-family:"/only screen and (min-width:64.063em)/";width:64.063em}meta.foundation-mq-large-only{font-family:"/only screen and (min-width:64.063em) and (max-width:90em)/";width:64.063em}meta.foundation-mq-xlarge{font-family:"/only screen and (min-width:90.063em)/";width:90.063em}meta.foundation-mq-xlarge-only{font-family:"/only screen and (min-width:90.063em) and (max-width:120em)/";width:90.063em}meta.foundation-mq-xxlarge{font-family:"/only screen and (min-width:120.063em)/";width:120.063em}meta.foundation-data-attribute-namespace{font-family:false}*{display:block}:root{margin:3em;background:#fdfdfd;color:#111;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}channel>title{text-align:center;color:#ff893b;font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:3.6615em;font-weight:bolder}channel>title::before{content:'RSS Feed for ';font-weight:initial}channel>title::after{content:"This RSS feed is meant to be used by RSS reader applications and websites.";display:block;padding:1em;background-color:#DF4949;color:#fff;font-family:initial;font-size:initial;letter-spacing:initial}channel>description,channel>link{display:none}item{padding:1em 0;border-bottom:1px solid #020202}item:last-child{border-bottom:none}item>title{color:#FDEBD0;font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:2.441em;margin-bottom:0.5em}item>link{color:#BA4A00}item>pubDate{color:#A4A4A4;font-size:small}item>description{margin-top:1em;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}item>guid,item>category{display:none} diff --git a/assets/css/style.css b/assets/css/style.css new file mode 100644 index 000000000..2440b2ef9 --- /dev/null +++ b/assets/css/style.css @@ -0,0 +1 @@ +/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}summary{display:list-item}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}progress{vertical-align:baseline}template,[hidden]{display:none !important}a{background-color:transparent}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}button,input,select,textarea{font:inherit;margin:0}optgroup{font-weight:bold}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:0.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}*{box-sizing:border-box}input,select,textarea,button{font-family:inherit;font-size:inherit;line-height:inherit}body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:14px;line-height:1.5;color:#24292e;background-color:#fff}a{color:#0366d6;text-decoration:none}a:hover{text-decoration:underline}b,strong{font-weight:600}hr,.rule{height:0;margin:15px 0;overflow:hidden;background:transparent;border:0;border-bottom:1px solid #dfe2e5}hr::before,.rule::before{display:table;content:""}hr::after,.rule::after{display:table;clear:both;content:""}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}button{cursor:pointer;border-radius:0}[hidden][hidden]{display:none !important}details summary{cursor:pointer}details:not([open])>*:not(summary){display:none !important}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:0}h1{font-size:32px;font-weight:600}h2{font-size:24px;font-weight:600}h3{font-size:20px;font-weight:600}h4{font-size:16px;font-weight:600}h5{font-size:14px;font-weight:600}h6{font-size:12px;font-weight:600}p{margin-top:0;margin-bottom:10px}small{font-size:90%}blockquote{margin:0}ul,ol{padding-left:0;margin-top:0;margin-bottom:0}ol ol,ul ol{list-style-type:lower-roman}ul ul ol,ul ol ol,ol ul ol,ol ol ol{list-style-type:lower-alpha}dd{margin-left:0}tt,code{font-family:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:12px}pre{margin-top:0;margin-bottom:0;font-family:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace;font-size:12px}.octicon{vertical-align:text-bottom}.anim-fade-in{animation-name:fade-in;animation-duration:1s;animation-timing-function:ease-in-out}.anim-fade-in.fast{animation-duration:300ms}@keyframes fade-in{0%{opacity:0}100%{opacity:1}}.anim-fade-out{animation-name:fade-out;animation-duration:1s;animation-timing-function:ease-out}.anim-fade-out.fast{animation-duration:0.3s}@keyframes fade-out{0%{opacity:1}100%{opacity:0}}.anim-fade-up{opacity:0;animation-name:fade-up;animation-duration:0.3s;animation-fill-mode:forwards;animation-timing-function:ease-out;animation-delay:1s}@keyframes fade-up{0%{opacity:0.8;transform:translateY(100%)}100%{opacity:1;transform:translateY(0)}}.anim-fade-down{animation-name:fade-down;animation-duration:0.3s;animation-fill-mode:forwards;animation-timing-function:ease-in}@keyframes fade-down{0%{opacity:1;transform:translateY(0)}100%{opacity:0.5;transform:translateY(100%)}}.anim-grow-x{width:0%;animation-name:grow-x;animation-duration:0.3s;animation-fill-mode:forwards;animation-timing-function:ease;animation-delay:0.5s}@keyframes grow-x{to{width:100%}}.anim-shrink-x{animation-name:shrink-x;animation-duration:0.3s;animation-fill-mode:forwards;animation-timing-function:ease-in-out;animation-delay:0.5s}@keyframes shrink-x{to{width:0%}}.anim-scale-in{animation-name:scale-in;animation-duration:0.15s;animation-timing-function:cubic-bezier(0.2, 0, 0.13, 1.5)}@keyframes scale-in{0%{opacity:0;transform:scale(0.5)}100%{opacity:1;transform:scale(1)}}.anim-pulse{animation-name:pulse;animation-duration:2s;animation-timing-function:linear;animation-iteration-count:infinite}@keyframes pulse{0%{opacity:0.3}10%{opacity:1}100%{opacity:0.3}}.anim-pulse-in{animation-name:pulse-in;animation-duration:0.5s}@keyframes pulse-in{0%{transform:scale3d(1, 1, 1)}50%{transform:scale3d(1.1, 1.1, 1.1)}100%{transform:scale3d(1, 1, 1)}}.hover-grow{transition:transform 0.3s;backface-visibility:hidden}.hover-grow:hover{transform:scale(1.025)}.border{border:1px #e1e4e8 solid !important}.border-y{border-top:1px #e1e4e8 solid !important;border-bottom:1px #e1e4e8 solid !important}.border-0{border:0 !important}.border-dashed{border-style:dashed !important}.border-blue{border-color:#0366d6 !important}.border-blue-light{border-color:#c8e1ff !important}.border-green{border-color:#34d058 !important}.border-green-light{border-color:#a2cbac !important}.border-red{border-color:#d73a49 !important}.border-red-light{border-color:#cea0a5 !important}.border-purple{border-color:#6f42c1 !important}.border-yellow{border-color:#d9d0a5 !important}.border-gray-light{border-color:#eaecef !important}.border-gray-dark{border-color:#d1d5da !important}.border-black-fade{border-color:rgba(27,31,35,0.15) !important}.border-top{border-top:1px #e1e4e8 solid !important}.border-right{border-right:1px #e1e4e8 solid !important}.border-bottom{border-bottom:1px #e1e4e8 solid !important}.border-left{border-left:1px #e1e4e8 solid !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}.rounded-0{border-radius:0 !important}.rounded-1{border-radius:3px !important}.rounded-2{border-radius:6px !important}.rounded-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-top-1{border-top-left-radius:3px !important;border-top-right-radius:3px !important}.rounded-top-2{border-top-left-radius:6px !important;border-top-right-radius:6px !important}.rounded-right-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-right-1{border-top-right-radius:3px !important;border-bottom-right-radius:3px !important}.rounded-right-2{border-top-right-radius:6px !important;border-bottom-right-radius:6px !important}.rounded-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-bottom-1{border-bottom-right-radius:3px !important;border-bottom-left-radius:3px !important}.rounded-bottom-2{border-bottom-right-radius:6px !important;border-bottom-left-radius:6px !important}.rounded-left-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-left-1{border-bottom-left-radius:3px !important;border-top-left-radius:3px !important}.rounded-left-2{border-bottom-left-radius:6px !important;border-top-left-radius:6px !important}@media (min-width: 544px){.border-sm-top{border-top:1px #e1e4e8 solid !important}.border-sm-right{border-right:1px #e1e4e8 solid !important}.border-sm-bottom{border-bottom:1px #e1e4e8 solid !important}.border-sm-left{border-left:1px #e1e4e8 solid !important}.border-sm-top-0{border-top:0 !important}.border-sm-right-0{border-right:0 !important}.border-sm-bottom-0{border-bottom:0 !important}.border-sm-left-0{border-left:0 !important}.rounded-sm-0{border-radius:0 !important}.rounded-sm-1{border-radius:3px !important}.rounded-sm-2{border-radius:6px !important}.rounded-sm-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-sm-top-1{border-top-left-radius:3px !important;border-top-right-radius:3px !important}.rounded-sm-top-2{border-top-left-radius:6px !important;border-top-right-radius:6px !important}.rounded-sm-right-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-sm-right-1{border-top-right-radius:3px !important;border-bottom-right-radius:3px !important}.rounded-sm-right-2{border-top-right-radius:6px !important;border-bottom-right-radius:6px !important}.rounded-sm-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-sm-bottom-1{border-bottom-right-radius:3px !important;border-bottom-left-radius:3px !important}.rounded-sm-bottom-2{border-bottom-right-radius:6px !important;border-bottom-left-radius:6px !important}.rounded-sm-left-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-sm-left-1{border-bottom-left-radius:3px !important;border-top-left-radius:3px !important}.rounded-sm-left-2{border-bottom-left-radius:6px !important;border-top-left-radius:6px !important}}@media (min-width: 768px){.border-md-top{border-top:1px #e1e4e8 solid !important}.border-md-right{border-right:1px #e1e4e8 solid !important}.border-md-bottom{border-bottom:1px #e1e4e8 solid !important}.border-md-left{border-left:1px #e1e4e8 solid !important}.border-md-top-0{border-top:0 !important}.border-md-right-0{border-right:0 !important}.border-md-bottom-0{border-bottom:0 !important}.border-md-left-0{border-left:0 !important}.rounded-md-0{border-radius:0 !important}.rounded-md-1{border-radius:3px !important}.rounded-md-2{border-radius:6px !important}.rounded-md-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-md-top-1{border-top-left-radius:3px !important;border-top-right-radius:3px !important}.rounded-md-top-2{border-top-left-radius:6px !important;border-top-right-radius:6px !important}.rounded-md-right-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-md-right-1{border-top-right-radius:3px !important;border-bottom-right-radius:3px !important}.rounded-md-right-2{border-top-right-radius:6px !important;border-bottom-right-radius:6px !important}.rounded-md-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-md-bottom-1{border-bottom-right-radius:3px !important;border-bottom-left-radius:3px !important}.rounded-md-bottom-2{border-bottom-right-radius:6px !important;border-bottom-left-radius:6px !important}.rounded-md-left-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-md-left-1{border-bottom-left-radius:3px !important;border-top-left-radius:3px !important}.rounded-md-left-2{border-bottom-left-radius:6px !important;border-top-left-radius:6px !important}}@media (min-width: 1012px){.border-lg-top{border-top:1px #e1e4e8 solid !important}.border-lg-right{border-right:1px #e1e4e8 solid !important}.border-lg-bottom{border-bottom:1px #e1e4e8 solid !important}.border-lg-left{border-left:1px #e1e4e8 solid !important}.border-lg-top-0{border-top:0 !important}.border-lg-right-0{border-right:0 !important}.border-lg-bottom-0{border-bottom:0 !important}.border-lg-left-0{border-left:0 !important}.rounded-lg-0{border-radius:0 !important}.rounded-lg-1{border-radius:3px !important}.rounded-lg-2{border-radius:6px !important}.rounded-lg-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-lg-top-1{border-top-left-radius:3px !important;border-top-right-radius:3px !important}.rounded-lg-top-2{border-top-left-radius:6px !important;border-top-right-radius:6px !important}.rounded-lg-right-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-lg-right-1{border-top-right-radius:3px !important;border-bottom-right-radius:3px !important}.rounded-lg-right-2{border-top-right-radius:6px !important;border-bottom-right-radius:6px !important}.rounded-lg-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-lg-bottom-1{border-bottom-right-radius:3px !important;border-bottom-left-radius:3px !important}.rounded-lg-bottom-2{border-bottom-right-radius:6px !important;border-bottom-left-radius:6px !important}.rounded-lg-left-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-lg-left-1{border-bottom-left-radius:3px !important;border-top-left-radius:3px !important}.rounded-lg-left-2{border-bottom-left-radius:6px !important;border-top-left-radius:6px !important}}@media (min-width: 1280px){.border-xl-top{border-top:1px #e1e4e8 solid !important}.border-xl-right{border-right:1px #e1e4e8 solid !important}.border-xl-bottom{border-bottom:1px #e1e4e8 solid !important}.border-xl-left{border-left:1px #e1e4e8 solid !important}.border-xl-top-0{border-top:0 !important}.border-xl-right-0{border-right:0 !important}.border-xl-bottom-0{border-bottom:0 !important}.border-xl-left-0{border-left:0 !important}.rounded-xl-0{border-radius:0 !important}.rounded-xl-1{border-radius:3px !important}.rounded-xl-2{border-radius:6px !important}.rounded-xl-top-0{border-top-left-radius:0 !important;border-top-right-radius:0 !important}.rounded-xl-top-1{border-top-left-radius:3px !important;border-top-right-radius:3px !important}.rounded-xl-top-2{border-top-left-radius:6px !important;border-top-right-radius:6px !important}.rounded-xl-right-0{border-top-right-radius:0 !important;border-bottom-right-radius:0 !important}.rounded-xl-right-1{border-top-right-radius:3px !important;border-bottom-right-radius:3px !important}.rounded-xl-right-2{border-top-right-radius:6px !important;border-bottom-right-radius:6px !important}.rounded-xl-bottom-0{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.rounded-xl-bottom-1{border-bottom-right-radius:3px !important;border-bottom-left-radius:3px !important}.rounded-xl-bottom-2{border-bottom-right-radius:6px !important;border-bottom-left-radius:6px !important}.rounded-xl-left-0{border-bottom-left-radius:0 !important;border-top-left-radius:0 !important}.rounded-xl-left-1{border-bottom-left-radius:3px !important;border-top-left-radius:3px !important}.rounded-xl-left-2{border-bottom-left-radius:6px !important;border-top-left-radius:6px !important}}.circle{border-radius:50% !important}.box-shadow{box-shadow:0 1px 1px rgba(27,31,35,0.1) !important}.box-shadow-medium{box-shadow:0 1px 5px rgba(27,31,35,0.15) !important}.box-shadow-large{box-shadow:0 1px 15px rgba(27,31,35,0.15) !important}.box-shadow-extra-large{box-shadow:0 10px 50px rgba(27,31,35,0.07) !important}.box-shadow-none{box-shadow:none !important}.bg-white{background-color:#fff !important}.bg-blue{background-color:#0366d6 !important}.bg-blue-light{background-color:#f1f8ff !important}.bg-gray-dark{background-color:#24292e !important}.bg-gray{background-color:#f6f8fa !important}.bg-gray-light{background-color:#fafbfc !important}.bg-green{background-color:#28a745 !important}.bg-green-light{background-color:#dcffe4 !important}.bg-red{background-color:#d73a49 !important}.bg-red-light{background-color:#ffdce0 !important}.bg-yellow{background-color:#ffd33d !important}.bg-yellow-light{background-color:#fff5b1 !important}.bg-purple{background-color:#6f42c1 !important}.bg-purple-light{background-color:#f5f0ff !important}.bg-shade-gradient{background-image:linear-gradient(180deg, rgba(27,31,35,0.065), rgba(27,31,35,0)) !important;background-repeat:no-repeat !important;background-size:100% 200px !important}.text-blue{color:#0366d6 !important}.text-red{color:#cb2431 !important}.text-gray-light{color:#6a737d !important}.text-gray{color:#586069 !important}.text-gray-dark{color:#24292e !important}.text-green{color:#28a745 !important}.text-orange{color:#a04100 !important}.text-orange-light{color:#e36209 !important}.text-purple{color:#6f42c1 !important}.text-white{color:#fff !important}.text-inherit{color:inherit !important}.text-pending{color:#b08800 !important}.bg-pending{color:#dbab09 !important}.link-gray{color:#586069 !important}.link-gray:hover{color:#0366d6 !important}.link-gray-dark{color:#24292e !important}.link-gray-dark:hover{color:#0366d6 !important}.link-hover-blue:hover{color:#0366d6 !important}.muted-link{color:#586069 !important}.muted-link:hover{color:#0366d6 !important;text-decoration:none}.details-overlay[open]>summary::before{position:fixed;top:0;right:0;bottom:0;left:0;z-index:80;display:block;cursor:default;content:" ";background:transparent}.details-overlay-dark[open]>summary::before{z-index:99;background:rgba(27,31,35,0.5)}.flex-row{flex-direction:row !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column{flex-direction:column !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-justify-start{justify-content:flex-start !important}.flex-justify-end{justify-content:flex-end !important}.flex-justify-center{justify-content:center !important}.flex-justify-between{justify-content:space-between !important}.flex-justify-around{justify-content:space-around !important}.flex-items-start{align-items:flex-start !important}.flex-items-end{align-items:flex-end !important}.flex-items-center{align-items:center !important}.flex-items-baseline{align-items:baseline !important}.flex-items-stretch{align-items:stretch !important}.flex-content-start{align-content:flex-start !important}.flex-content-end{align-content:flex-end !important}.flex-content-center{align-content:center !important}.flex-content-between{align-content:space-between !important}.flex-content-around{align-content:space-around !important}.flex-content-stretch{align-content:stretch !important}.flex-auto{flex:1 1 auto !important}.flex-shrink-0{flex-shrink:0 !important}.flex-self-auto{align-self:auto !important}.flex-self-start{align-self:flex-start !important}.flex-self-end{align-self:flex-end !important}.flex-self-center{align-self:center !important}.flex-self-baseline{align-self:baseline !important}.flex-self-stretch{align-self:stretch !important}.flex-item-equal{flex-grow:1;flex-basis:0}@media (min-width: 544px){.flex-sm-row{flex-direction:row !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column{flex-direction:column !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-justify-start{justify-content:flex-start !important}.flex-sm-justify-end{justify-content:flex-end !important}.flex-sm-justify-center{justify-content:center !important}.flex-sm-justify-between{justify-content:space-between !important}.flex-sm-justify-around{justify-content:space-around !important}.flex-sm-items-start{align-items:flex-start !important}.flex-sm-items-end{align-items:flex-end !important}.flex-sm-items-center{align-items:center !important}.flex-sm-items-baseline{align-items:baseline !important}.flex-sm-items-stretch{align-items:stretch !important}.flex-sm-content-start{align-content:flex-start !important}.flex-sm-content-end{align-content:flex-end !important}.flex-sm-content-center{align-content:center !important}.flex-sm-content-between{align-content:space-between !important}.flex-sm-content-around{align-content:space-around !important}.flex-sm-content-stretch{align-content:stretch !important}.flex-sm-auto{flex:1 1 auto !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-self-auto{align-self:auto !important}.flex-sm-self-start{align-self:flex-start !important}.flex-sm-self-end{align-self:flex-end !important}.flex-sm-self-center{align-self:center !important}.flex-sm-self-baseline{align-self:baseline !important}.flex-sm-self-stretch{align-self:stretch !important}.flex-sm-item-equal{flex-grow:1;flex-basis:0}}@media (min-width: 768px){.flex-md-row{flex-direction:row !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column{flex-direction:column !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-justify-start{justify-content:flex-start !important}.flex-md-justify-end{justify-content:flex-end !important}.flex-md-justify-center{justify-content:center !important}.flex-md-justify-between{justify-content:space-between !important}.flex-md-justify-around{justify-content:space-around !important}.flex-md-items-start{align-items:flex-start !important}.flex-md-items-end{align-items:flex-end !important}.flex-md-items-center{align-items:center !important}.flex-md-items-baseline{align-items:baseline !important}.flex-md-items-stretch{align-items:stretch !important}.flex-md-content-start{align-content:flex-start !important}.flex-md-content-end{align-content:flex-end !important}.flex-md-content-center{align-content:center !important}.flex-md-content-between{align-content:space-between !important}.flex-md-content-around{align-content:space-around !important}.flex-md-content-stretch{align-content:stretch !important}.flex-md-auto{flex:1 1 auto !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-self-auto{align-self:auto !important}.flex-md-self-start{align-self:flex-start !important}.flex-md-self-end{align-self:flex-end !important}.flex-md-self-center{align-self:center !important}.flex-md-self-baseline{align-self:baseline !important}.flex-md-self-stretch{align-self:stretch !important}.flex-md-item-equal{flex-grow:1;flex-basis:0}}@media (min-width: 1012px){.flex-lg-row{flex-direction:row !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column{flex-direction:column !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-justify-start{justify-content:flex-start !important}.flex-lg-justify-end{justify-content:flex-end !important}.flex-lg-justify-center{justify-content:center !important}.flex-lg-justify-between{justify-content:space-between !important}.flex-lg-justify-around{justify-content:space-around !important}.flex-lg-items-start{align-items:flex-start !important}.flex-lg-items-end{align-items:flex-end !important}.flex-lg-items-center{align-items:center !important}.flex-lg-items-baseline{align-items:baseline !important}.flex-lg-items-stretch{align-items:stretch !important}.flex-lg-content-start{align-content:flex-start !important}.flex-lg-content-end{align-content:flex-end !important}.flex-lg-content-center{align-content:center !important}.flex-lg-content-between{align-content:space-between !important}.flex-lg-content-around{align-content:space-around !important}.flex-lg-content-stretch{align-content:stretch !important}.flex-lg-auto{flex:1 1 auto !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-self-auto{align-self:auto !important}.flex-lg-self-start{align-self:flex-start !important}.flex-lg-self-end{align-self:flex-end !important}.flex-lg-self-center{align-self:center !important}.flex-lg-self-baseline{align-self:baseline !important}.flex-lg-self-stretch{align-self:stretch !important}.flex-lg-item-equal{flex-grow:1;flex-basis:0}}@media (min-width: 1280px){.flex-xl-row{flex-direction:row !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column{flex-direction:column !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-justify-start{justify-content:flex-start !important}.flex-xl-justify-end{justify-content:flex-end !important}.flex-xl-justify-center{justify-content:center !important}.flex-xl-justify-between{justify-content:space-between !important}.flex-xl-justify-around{justify-content:space-around !important}.flex-xl-items-start{align-items:flex-start !important}.flex-xl-items-end{align-items:flex-end !important}.flex-xl-items-center{align-items:center !important}.flex-xl-items-baseline{align-items:baseline !important}.flex-xl-items-stretch{align-items:stretch !important}.flex-xl-content-start{align-content:flex-start !important}.flex-xl-content-end{align-content:flex-end !important}.flex-xl-content-center{align-content:center !important}.flex-xl-content-between{align-content:space-between !important}.flex-xl-content-around{align-content:space-around !important}.flex-xl-content-stretch{align-content:stretch !important}.flex-xl-auto{flex:1 1 auto !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-self-auto{align-self:auto !important}.flex-xl-self-start{align-self:flex-start !important}.flex-xl-self-end{align-self:flex-end !important}.flex-xl-self-center{align-self:center !important}.flex-xl-self-baseline{align-self:baseline !important}.flex-xl-self-stretch{align-self:stretch !important}.flex-xl-item-equal{flex-grow:1;flex-basis:0}}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.top-0{top:0 !important}.right-0{right:0 !important}.bottom-0{bottom:0 !important}.left-0{left:0 !important}.v-align-middle{vertical-align:middle !important}.v-align-top{vertical-align:top !important}.v-align-bottom{vertical-align:bottom !important}.v-align-text-top{vertical-align:text-top !important}.v-align-text-bottom{vertical-align:text-bottom !important}.v-align-baseline{vertical-align:baseline !important}.overflow-hidden{overflow:hidden !important}.overflow-scroll{overflow:scroll !important}.overflow-auto{overflow:auto !important}.clearfix::before{display:table;content:""}.clearfix::after{display:table;clear:both;content:""}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media (min-width: 544px){.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: 1012px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media (min-width: 1280px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}.width-fit{max-width:100% !important}.width-full{width:100% !important}.height-fit{max-height:100% !important}.height-full{height:100% !important}.min-width-0{min-width:0 !important}.direction-rtl{direction:rtl !important}.direction-ltr{direction:ltr !important}@media (min-width: 544px){.direction-sm-rtl{direction:rtl !important}.direction-sm-ltr{direction:ltr !important}}@media (min-width: 768px){.direction-md-rtl{direction:rtl !important}.direction-md-ltr{direction:ltr !important}}@media (min-width: 1012px){.direction-lg-rtl{direction:rtl !important}.direction-lg-ltr{direction:ltr !important}}@media (min-width: 1280px){.direction-xl-rtl{direction:rtl !important}.direction-xl-ltr{direction:ltr !important}}.m-0{margin:0 !important}.mt-0{margin-top:0 !important}.mr-0{margin-right:0 !important}.mb-0{margin-bottom:0 !important}.ml-0{margin-left:0 !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.m-1{margin:4px !important}.mt-1{margin-top:4px !important}.mr-1{margin-right:4px !important}.mb-1{margin-bottom:4px !important}.ml-1{margin-left:4px !important}.mt-n1{margin-top:-4px !important}.mr-n1{margin-right:-4px !important}.mb-n1{margin-bottom:-4px !important}.ml-n1{margin-left:-4px !important}.mx-1{margin-right:4px !important;margin-left:4px !important}.my-1{margin-top:4px !important;margin-bottom:4px !important}.m-2{margin:8px !important}.mt-2{margin-top:8px !important}.mr-2{margin-right:8px !important}.mb-2{margin-bottom:8px !important}.ml-2{margin-left:8px !important}.mt-n2{margin-top:-8px !important}.mr-n2{margin-right:-8px !important}.mb-n2{margin-bottom:-8px !important}.ml-n2{margin-left:-8px !important}.mx-2{margin-right:8px !important;margin-left:8px !important}.my-2{margin-top:8px !important;margin-bottom:8px !important}.m-3{margin:16px !important}.mt-3{margin-top:16px !important}.mr-3{margin-right:16px !important}.mb-3{margin-bottom:16px !important}.ml-3{margin-left:16px !important}.mt-n3{margin-top:-16px !important}.mr-n3{margin-right:-16px !important}.mb-n3{margin-bottom:-16px !important}.ml-n3{margin-left:-16px !important}.mx-3{margin-right:16px !important;margin-left:16px !important}.my-3{margin-top:16px !important;margin-bottom:16px !important}.m-4{margin:24px !important}.mt-4{margin-top:24px !important}.mr-4{margin-right:24px !important}.mb-4{margin-bottom:24px !important}.ml-4{margin-left:24px !important}.mt-n4{margin-top:-24px !important}.mr-n4{margin-right:-24px !important}.mb-n4{margin-bottom:-24px !important}.ml-n4{margin-left:-24px !important}.mx-4{margin-right:24px !important;margin-left:24px !important}.my-4{margin-top:24px !important;margin-bottom:24px !important}.m-5{margin:32px !important}.mt-5{margin-top:32px !important}.mr-5{margin-right:32px !important}.mb-5{margin-bottom:32px !important}.ml-5{margin-left:32px !important}.mt-n5{margin-top:-32px !important}.mr-n5{margin-right:-32px !important}.mb-n5{margin-bottom:-32px !important}.ml-n5{margin-left:-32px !important}.mx-5{margin-right:32px !important;margin-left:32px !important}.my-5{margin-top:32px !important;margin-bottom:32px !important}.m-6{margin:40px !important}.mt-6{margin-top:40px !important}.mr-6{margin-right:40px !important}.mb-6{margin-bottom:40px !important}.ml-6{margin-left:40px !important}.mt-n6{margin-top:-40px !important}.mr-n6{margin-right:-40px !important}.mb-n6{margin-bottom:-40px !important}.ml-n6{margin-left:-40px !important}.mx-6{margin-right:40px !important;margin-left:40px !important}.my-6{margin-top:40px !important;margin-bottom:40px !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}@media (min-width: 544px){.m-sm-0{margin:0 !important}.mt-sm-0{margin-top:0 !important}.mr-sm-0{margin-right:0 !important}.mb-sm-0{margin-bottom:0 !important}.ml-sm-0{margin-left:0 !important}.mx-sm-0{margin-right:0 !important;margin-left:0 !important}.my-sm-0{margin-top:0 !important;margin-bottom:0 !important}.m-sm-1{margin:4px !important}.mt-sm-1{margin-top:4px !important}.mr-sm-1{margin-right:4px !important}.mb-sm-1{margin-bottom:4px !important}.ml-sm-1{margin-left:4px !important}.mt-sm-n1{margin-top:-4px !important}.mr-sm-n1{margin-right:-4px !important}.mb-sm-n1{margin-bottom:-4px !important}.ml-sm-n1{margin-left:-4px !important}.mx-sm-1{margin-right:4px !important;margin-left:4px !important}.my-sm-1{margin-top:4px !important;margin-bottom:4px !important}.m-sm-2{margin:8px !important}.mt-sm-2{margin-top:8px !important}.mr-sm-2{margin-right:8px !important}.mb-sm-2{margin-bottom:8px !important}.ml-sm-2{margin-left:8px !important}.mt-sm-n2{margin-top:-8px !important}.mr-sm-n2{margin-right:-8px !important}.mb-sm-n2{margin-bottom:-8px !important}.ml-sm-n2{margin-left:-8px !important}.mx-sm-2{margin-right:8px !important;margin-left:8px !important}.my-sm-2{margin-top:8px !important;margin-bottom:8px !important}.m-sm-3{margin:16px !important}.mt-sm-3{margin-top:16px !important}.mr-sm-3{margin-right:16px !important}.mb-sm-3{margin-bottom:16px !important}.ml-sm-3{margin-left:16px !important}.mt-sm-n3{margin-top:-16px !important}.mr-sm-n3{margin-right:-16px !important}.mb-sm-n3{margin-bottom:-16px !important}.ml-sm-n3{margin-left:-16px !important}.mx-sm-3{margin-right:16px !important;margin-left:16px !important}.my-sm-3{margin-top:16px !important;margin-bottom:16px !important}.m-sm-4{margin:24px !important}.mt-sm-4{margin-top:24px !important}.mr-sm-4{margin-right:24px !important}.mb-sm-4{margin-bottom:24px !important}.ml-sm-4{margin-left:24px !important}.mt-sm-n4{margin-top:-24px !important}.mr-sm-n4{margin-right:-24px !important}.mb-sm-n4{margin-bottom:-24px !important}.ml-sm-n4{margin-left:-24px !important}.mx-sm-4{margin-right:24px !important;margin-left:24px !important}.my-sm-4{margin-top:24px !important;margin-bottom:24px !important}.m-sm-5{margin:32px !important}.mt-sm-5{margin-top:32px !important}.mr-sm-5{margin-right:32px !important}.mb-sm-5{margin-bottom:32px !important}.ml-sm-5{margin-left:32px !important}.mt-sm-n5{margin-top:-32px !important}.mr-sm-n5{margin-right:-32px !important}.mb-sm-n5{margin-bottom:-32px !important}.ml-sm-n5{margin-left:-32px !important}.mx-sm-5{margin-right:32px !important;margin-left:32px !important}.my-sm-5{margin-top:32px !important;margin-bottom:32px !important}.m-sm-6{margin:40px !important}.mt-sm-6{margin-top:40px !important}.mr-sm-6{margin-right:40px !important}.mb-sm-6{margin-bottom:40px !important}.ml-sm-6{margin-left:40px !important}.mt-sm-n6{margin-top:-40px !important}.mr-sm-n6{margin-right:-40px !important}.mb-sm-n6{margin-bottom:-40px !important}.ml-sm-n6{margin-left:-40px !important}.mx-sm-6{margin-right:40px !important;margin-left:40px !important}.my-sm-6{margin-top:40px !important;margin-bottom:40px !important}.mx-sm-auto{margin-right:auto !important;margin-left:auto !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0{margin-top:0 !important}.mr-md-0{margin-right:0 !important}.mb-md-0{margin-bottom:0 !important}.ml-md-0{margin-left:0 !important}.mx-md-0{margin-right:0 !important;margin-left:0 !important}.my-md-0{margin-top:0 !important;margin-bottom:0 !important}.m-md-1{margin:4px !important}.mt-md-1{margin-top:4px !important}.mr-md-1{margin-right:4px !important}.mb-md-1{margin-bottom:4px !important}.ml-md-1{margin-left:4px !important}.mt-md-n1{margin-top:-4px !important}.mr-md-n1{margin-right:-4px !important}.mb-md-n1{margin-bottom:-4px !important}.ml-md-n1{margin-left:-4px !important}.mx-md-1{margin-right:4px !important;margin-left:4px !important}.my-md-1{margin-top:4px !important;margin-bottom:4px !important}.m-md-2{margin:8px !important}.mt-md-2{margin-top:8px !important}.mr-md-2{margin-right:8px !important}.mb-md-2{margin-bottom:8px !important}.ml-md-2{margin-left:8px !important}.mt-md-n2{margin-top:-8px !important}.mr-md-n2{margin-right:-8px !important}.mb-md-n2{margin-bottom:-8px !important}.ml-md-n2{margin-left:-8px !important}.mx-md-2{margin-right:8px !important;margin-left:8px !important}.my-md-2{margin-top:8px !important;margin-bottom:8px !important}.m-md-3{margin:16px !important}.mt-md-3{margin-top:16px !important}.mr-md-3{margin-right:16px !important}.mb-md-3{margin-bottom:16px !important}.ml-md-3{margin-left:16px !important}.mt-md-n3{margin-top:-16px !important}.mr-md-n3{margin-right:-16px !important}.mb-md-n3{margin-bottom:-16px !important}.ml-md-n3{margin-left:-16px !important}.mx-md-3{margin-right:16px !important;margin-left:16px !important}.my-md-3{margin-top:16px !important;margin-bottom:16px !important}.m-md-4{margin:24px !important}.mt-md-4{margin-top:24px !important}.mr-md-4{margin-right:24px !important}.mb-md-4{margin-bottom:24px !important}.ml-md-4{margin-left:24px !important}.mt-md-n4{margin-top:-24px !important}.mr-md-n4{margin-right:-24px !important}.mb-md-n4{margin-bottom:-24px !important}.ml-md-n4{margin-left:-24px !important}.mx-md-4{margin-right:24px !important;margin-left:24px !important}.my-md-4{margin-top:24px !important;margin-bottom:24px !important}.m-md-5{margin:32px !important}.mt-md-5{margin-top:32px !important}.mr-md-5{margin-right:32px !important}.mb-md-5{margin-bottom:32px !important}.ml-md-5{margin-left:32px !important}.mt-md-n5{margin-top:-32px !important}.mr-md-n5{margin-right:-32px !important}.mb-md-n5{margin-bottom:-32px !important}.ml-md-n5{margin-left:-32px !important}.mx-md-5{margin-right:32px !important;margin-left:32px !important}.my-md-5{margin-top:32px !important;margin-bottom:32px !important}.m-md-6{margin:40px !important}.mt-md-6{margin-top:40px !important}.mr-md-6{margin-right:40px !important}.mb-md-6{margin-bottom:40px !important}.ml-md-6{margin-left:40px !important}.mt-md-n6{margin-top:-40px !important}.mr-md-n6{margin-right:-40px !important}.mb-md-n6{margin-bottom:-40px !important}.ml-md-n6{margin-left:-40px !important}.mx-md-6{margin-right:40px !important;margin-left:40px !important}.my-md-6{margin-top:40px !important;margin-bottom:40px !important}.mx-md-auto{margin-right:auto !important;margin-left:auto !important}}@media (min-width: 1012px){.m-lg-0{margin:0 !important}.mt-lg-0{margin-top:0 !important}.mr-lg-0{margin-right:0 !important}.mb-lg-0{margin-bottom:0 !important}.ml-lg-0{margin-left:0 !important}.mx-lg-0{margin-right:0 !important;margin-left:0 !important}.my-lg-0{margin-top:0 !important;margin-bottom:0 !important}.m-lg-1{margin:4px !important}.mt-lg-1{margin-top:4px !important}.mr-lg-1{margin-right:4px !important}.mb-lg-1{margin-bottom:4px !important}.ml-lg-1{margin-left:4px !important}.mt-lg-n1{margin-top:-4px !important}.mr-lg-n1{margin-right:-4px !important}.mb-lg-n1{margin-bottom:-4px !important}.ml-lg-n1{margin-left:-4px !important}.mx-lg-1{margin-right:4px !important;margin-left:4px !important}.my-lg-1{margin-top:4px !important;margin-bottom:4px !important}.m-lg-2{margin:8px !important}.mt-lg-2{margin-top:8px !important}.mr-lg-2{margin-right:8px !important}.mb-lg-2{margin-bottom:8px !important}.ml-lg-2{margin-left:8px !important}.mt-lg-n2{margin-top:-8px !important}.mr-lg-n2{margin-right:-8px !important}.mb-lg-n2{margin-bottom:-8px !important}.ml-lg-n2{margin-left:-8px !important}.mx-lg-2{margin-right:8px !important;margin-left:8px !important}.my-lg-2{margin-top:8px !important;margin-bottom:8px !important}.m-lg-3{margin:16px !important}.mt-lg-3{margin-top:16px !important}.mr-lg-3{margin-right:16px !important}.mb-lg-3{margin-bottom:16px !important}.ml-lg-3{margin-left:16px !important}.mt-lg-n3{margin-top:-16px !important}.mr-lg-n3{margin-right:-16px !important}.mb-lg-n3{margin-bottom:-16px !important}.ml-lg-n3{margin-left:-16px !important}.mx-lg-3{margin-right:16px !important;margin-left:16px !important}.my-lg-3{margin-top:16px !important;margin-bottom:16px !important}.m-lg-4{margin:24px !important}.mt-lg-4{margin-top:24px !important}.mr-lg-4{margin-right:24px !important}.mb-lg-4{margin-bottom:24px !important}.ml-lg-4{margin-left:24px !important}.mt-lg-n4{margin-top:-24px !important}.mr-lg-n4{margin-right:-24px !important}.mb-lg-n4{margin-bottom:-24px !important}.ml-lg-n4{margin-left:-24px !important}.mx-lg-4{margin-right:24px !important;margin-left:24px !important}.my-lg-4{margin-top:24px !important;margin-bottom:24px !important}.m-lg-5{margin:32px !important}.mt-lg-5{margin-top:32px !important}.mr-lg-5{margin-right:32px !important}.mb-lg-5{margin-bottom:32px !important}.ml-lg-5{margin-left:32px !important}.mt-lg-n5{margin-top:-32px !important}.mr-lg-n5{margin-right:-32px !important}.mb-lg-n5{margin-bottom:-32px !important}.ml-lg-n5{margin-left:-32px !important}.mx-lg-5{margin-right:32px !important;margin-left:32px !important}.my-lg-5{margin-top:32px !important;margin-bottom:32px !important}.m-lg-6{margin:40px !important}.mt-lg-6{margin-top:40px !important}.mr-lg-6{margin-right:40px !important}.mb-lg-6{margin-bottom:40px !important}.ml-lg-6{margin-left:40px !important}.mt-lg-n6{margin-top:-40px !important}.mr-lg-n6{margin-right:-40px !important}.mb-lg-n6{margin-bottom:-40px !important}.ml-lg-n6{margin-left:-40px !important}.mx-lg-6{margin-right:40px !important;margin-left:40px !important}.my-lg-6{margin-top:40px !important;margin-bottom:40px !important}.mx-lg-auto{margin-right:auto !important;margin-left:auto !important}}@media (min-width: 1280px){.m-xl-0{margin:0 !important}.mt-xl-0{margin-top:0 !important}.mr-xl-0{margin-right:0 !important}.mb-xl-0{margin-bottom:0 !important}.ml-xl-0{margin-left:0 !important}.mx-xl-0{margin-right:0 !important;margin-left:0 !important}.my-xl-0{margin-top:0 !important;margin-bottom:0 !important}.m-xl-1{margin:4px !important}.mt-xl-1{margin-top:4px !important}.mr-xl-1{margin-right:4px !important}.mb-xl-1{margin-bottom:4px !important}.ml-xl-1{margin-left:4px !important}.mt-xl-n1{margin-top:-4px !important}.mr-xl-n1{margin-right:-4px !important}.mb-xl-n1{margin-bottom:-4px !important}.ml-xl-n1{margin-left:-4px !important}.mx-xl-1{margin-right:4px !important;margin-left:4px !important}.my-xl-1{margin-top:4px !important;margin-bottom:4px !important}.m-xl-2{margin:8px !important}.mt-xl-2{margin-top:8px !important}.mr-xl-2{margin-right:8px !important}.mb-xl-2{margin-bottom:8px !important}.ml-xl-2{margin-left:8px !important}.mt-xl-n2{margin-top:-8px !important}.mr-xl-n2{margin-right:-8px !important}.mb-xl-n2{margin-bottom:-8px !important}.ml-xl-n2{margin-left:-8px !important}.mx-xl-2{margin-right:8px !important;margin-left:8px !important}.my-xl-2{margin-top:8px !important;margin-bottom:8px !important}.m-xl-3{margin:16px !important}.mt-xl-3{margin-top:16px !important}.mr-xl-3{margin-right:16px !important}.mb-xl-3{margin-bottom:16px !important}.ml-xl-3{margin-left:16px !important}.mt-xl-n3{margin-top:-16px !important}.mr-xl-n3{margin-right:-16px !important}.mb-xl-n3{margin-bottom:-16px !important}.ml-xl-n3{margin-left:-16px !important}.mx-xl-3{margin-right:16px !important;margin-left:16px !important}.my-xl-3{margin-top:16px !important;margin-bottom:16px !important}.m-xl-4{margin:24px !important}.mt-xl-4{margin-top:24px !important}.mr-xl-4{margin-right:24px !important}.mb-xl-4{margin-bottom:24px !important}.ml-xl-4{margin-left:24px !important}.mt-xl-n4{margin-top:-24px !important}.mr-xl-n4{margin-right:-24px !important}.mb-xl-n4{margin-bottom:-24px !important}.ml-xl-n4{margin-left:-24px !important}.mx-xl-4{margin-right:24px !important;margin-left:24px !important}.my-xl-4{margin-top:24px !important;margin-bottom:24px !important}.m-xl-5{margin:32px !important}.mt-xl-5{margin-top:32px !important}.mr-xl-5{margin-right:32px !important}.mb-xl-5{margin-bottom:32px !important}.ml-xl-5{margin-left:32px !important}.mt-xl-n5{margin-top:-32px !important}.mr-xl-n5{margin-right:-32px !important}.mb-xl-n5{margin-bottom:-32px !important}.ml-xl-n5{margin-left:-32px !important}.mx-xl-5{margin-right:32px !important;margin-left:32px !important}.my-xl-5{margin-top:32px !important;margin-bottom:32px !important}.m-xl-6{margin:40px !important}.mt-xl-6{margin-top:40px !important}.mr-xl-6{margin-right:40px !important}.mb-xl-6{margin-bottom:40px !important}.ml-xl-6{margin-left:40px !important}.mt-xl-n6{margin-top:-40px !important}.mr-xl-n6{margin-right:-40px !important}.mb-xl-n6{margin-bottom:-40px !important}.ml-xl-n6{margin-left:-40px !important}.mx-xl-6{margin-right:40px !important;margin-left:40px !important}.my-xl-6{margin-top:40px !important;margin-bottom:40px !important}.mx-xl-auto{margin-right:auto !important;margin-left:auto !important}}.p-0{padding:0 !important}.pt-0{padding-top:0 !important}.pr-0{padding-right:0 !important}.pb-0{padding-bottom:0 !important}.pl-0{padding-left:0 !important}.px-0{padding-right:0 !important;padding-left:0 !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.p-1{padding:4px !important}.pt-1{padding-top:4px !important}.pr-1{padding-right:4px !important}.pb-1{padding-bottom:4px !important}.pl-1{padding-left:4px !important}.px-1{padding-right:4px !important;padding-left:4px !important}.py-1{padding-top:4px !important;padding-bottom:4px !important}.p-2{padding:8px !important}.pt-2{padding-top:8px !important}.pr-2{padding-right:8px !important}.pb-2{padding-bottom:8px !important}.pl-2{padding-left:8px !important}.px-2{padding-right:8px !important;padding-left:8px !important}.py-2{padding-top:8px !important;padding-bottom:8px !important}.p-3{padding:16px !important}.pt-3{padding-top:16px !important}.pr-3{padding-right:16px !important}.pb-3{padding-bottom:16px !important}.pl-3{padding-left:16px !important}.px-3{padding-right:16px !important;padding-left:16px !important}.py-3{padding-top:16px !important;padding-bottom:16px !important}.p-4{padding:24px !important}.pt-4{padding-top:24px !important}.pr-4{padding-right:24px !important}.pb-4{padding-bottom:24px !important}.pl-4{padding-left:24px !important}.px-4{padding-right:24px !important;padding-left:24px !important}.py-4{padding-top:24px !important;padding-bottom:24px !important}.p-5{padding:32px !important}.pt-5{padding-top:32px !important}.pr-5{padding-right:32px !important}.pb-5{padding-bottom:32px !important}.pl-5{padding-left:32px !important}.px-5{padding-right:32px !important;padding-left:32px !important}.py-5{padding-top:32px !important;padding-bottom:32px !important}.p-6{padding:40px !important}.pt-6{padding-top:40px !important}.pr-6{padding-right:40px !important}.pb-6{padding-bottom:40px !important}.pl-6{padding-left:40px !important}.px-6{padding-right:40px !important;padding-left:40px !important}.py-6{padding-top:40px !important;padding-bottom:40px !important}@media (min-width: 544px){.p-sm-0{padding:0 !important}.pt-sm-0{padding-top:0 !important}.pr-sm-0{padding-right:0 !important}.pb-sm-0{padding-bottom:0 !important}.pl-sm-0{padding-left:0 !important}.px-sm-0{padding-right:0 !important;padding-left:0 !important}.py-sm-0{padding-top:0 !important;padding-bottom:0 !important}.p-sm-1{padding:4px !important}.pt-sm-1{padding-top:4px !important}.pr-sm-1{padding-right:4px !important}.pb-sm-1{padding-bottom:4px !important}.pl-sm-1{padding-left:4px !important}.px-sm-1{padding-right:4px !important;padding-left:4px !important}.py-sm-1{padding-top:4px !important;padding-bottom:4px !important}.p-sm-2{padding:8px !important}.pt-sm-2{padding-top:8px !important}.pr-sm-2{padding-right:8px !important}.pb-sm-2{padding-bottom:8px !important}.pl-sm-2{padding-left:8px !important}.px-sm-2{padding-right:8px !important;padding-left:8px !important}.py-sm-2{padding-top:8px !important;padding-bottom:8px !important}.p-sm-3{padding:16px !important}.pt-sm-3{padding-top:16px !important}.pr-sm-3{padding-right:16px !important}.pb-sm-3{padding-bottom:16px !important}.pl-sm-3{padding-left:16px !important}.px-sm-3{padding-right:16px !important;padding-left:16px !important}.py-sm-3{padding-top:16px !important;padding-bottom:16px !important}.p-sm-4{padding:24px !important}.pt-sm-4{padding-top:24px !important}.pr-sm-4{padding-right:24px !important}.pb-sm-4{padding-bottom:24px !important}.pl-sm-4{padding-left:24px !important}.px-sm-4{padding-right:24px !important;padding-left:24px !important}.py-sm-4{padding-top:24px !important;padding-bottom:24px !important}.p-sm-5{padding:32px !important}.pt-sm-5{padding-top:32px !important}.pr-sm-5{padding-right:32px !important}.pb-sm-5{padding-bottom:32px !important}.pl-sm-5{padding-left:32px !important}.px-sm-5{padding-right:32px !important;padding-left:32px !important}.py-sm-5{padding-top:32px !important;padding-bottom:32px !important}.p-sm-6{padding:40px !important}.pt-sm-6{padding-top:40px !important}.pr-sm-6{padding-right:40px !important}.pb-sm-6{padding-bottom:40px !important}.pl-sm-6{padding-left:40px !important}.px-sm-6{padding-right:40px !important;padding-left:40px !important}.py-sm-6{padding-top:40px !important;padding-bottom:40px !important}}@media (min-width: 768px){.p-md-0{padding:0 !important}.pt-md-0{padding-top:0 !important}.pr-md-0{padding-right:0 !important}.pb-md-0{padding-bottom:0 !important}.pl-md-0{padding-left:0 !important}.px-md-0{padding-right:0 !important;padding-left:0 !important}.py-md-0{padding-top:0 !important;padding-bottom:0 !important}.p-md-1{padding:4px !important}.pt-md-1{padding-top:4px !important}.pr-md-1{padding-right:4px !important}.pb-md-1{padding-bottom:4px !important}.pl-md-1{padding-left:4px !important}.px-md-1{padding-right:4px !important;padding-left:4px !important}.py-md-1{padding-top:4px !important;padding-bottom:4px !important}.p-md-2{padding:8px !important}.pt-md-2{padding-top:8px !important}.pr-md-2{padding-right:8px !important}.pb-md-2{padding-bottom:8px !important}.pl-md-2{padding-left:8px !important}.px-md-2{padding-right:8px !important;padding-left:8px !important}.py-md-2{padding-top:8px !important;padding-bottom:8px !important}.p-md-3{padding:16px !important}.pt-md-3{padding-top:16px !important}.pr-md-3{padding-right:16px !important}.pb-md-3{padding-bottom:16px !important}.pl-md-3{padding-left:16px !important}.px-md-3{padding-right:16px !important;padding-left:16px !important}.py-md-3{padding-top:16px !important;padding-bottom:16px !important}.p-md-4{padding:24px !important}.pt-md-4{padding-top:24px !important}.pr-md-4{padding-right:24px !important}.pb-md-4{padding-bottom:24px !important}.pl-md-4{padding-left:24px !important}.px-md-4{padding-right:24px !important;padding-left:24px !important}.py-md-4{padding-top:24px !important;padding-bottom:24px !important}.p-md-5{padding:32px !important}.pt-md-5{padding-top:32px !important}.pr-md-5{padding-right:32px !important}.pb-md-5{padding-bottom:32px !important}.pl-md-5{padding-left:32px !important}.px-md-5{padding-right:32px !important;padding-left:32px !important}.py-md-5{padding-top:32px !important;padding-bottom:32px !important}.p-md-6{padding:40px !important}.pt-md-6{padding-top:40px !important}.pr-md-6{padding-right:40px !important}.pb-md-6{padding-bottom:40px !important}.pl-md-6{padding-left:40px !important}.px-md-6{padding-right:40px !important;padding-left:40px !important}.py-md-6{padding-top:40px !important;padding-bottom:40px !important}}@media (min-width: 1012px){.p-lg-0{padding:0 !important}.pt-lg-0{padding-top:0 !important}.pr-lg-0{padding-right:0 !important}.pb-lg-0{padding-bottom:0 !important}.pl-lg-0{padding-left:0 !important}.px-lg-0{padding-right:0 !important;padding-left:0 !important}.py-lg-0{padding-top:0 !important;padding-bottom:0 !important}.p-lg-1{padding:4px !important}.pt-lg-1{padding-top:4px !important}.pr-lg-1{padding-right:4px !important}.pb-lg-1{padding-bottom:4px !important}.pl-lg-1{padding-left:4px !important}.px-lg-1{padding-right:4px !important;padding-left:4px !important}.py-lg-1{padding-top:4px !important;padding-bottom:4px !important}.p-lg-2{padding:8px !important}.pt-lg-2{padding-top:8px !important}.pr-lg-2{padding-right:8px !important}.pb-lg-2{padding-bottom:8px !important}.pl-lg-2{padding-left:8px !important}.px-lg-2{padding-right:8px !important;padding-left:8px !important}.py-lg-2{padding-top:8px !important;padding-bottom:8px !important}.p-lg-3{padding:16px !important}.pt-lg-3{padding-top:16px !important}.pr-lg-3{padding-right:16px !important}.pb-lg-3{padding-bottom:16px !important}.pl-lg-3{padding-left:16px !important}.px-lg-3{padding-right:16px !important;padding-left:16px !important}.py-lg-3{padding-top:16px !important;padding-bottom:16px !important}.p-lg-4{padding:24px !important}.pt-lg-4{padding-top:24px !important}.pr-lg-4{padding-right:24px !important}.pb-lg-4{padding-bottom:24px !important}.pl-lg-4{padding-left:24px !important}.px-lg-4{padding-right:24px !important;padding-left:24px !important}.py-lg-4{padding-top:24px !important;padding-bottom:24px !important}.p-lg-5{padding:32px !important}.pt-lg-5{padding-top:32px !important}.pr-lg-5{padding-right:32px !important}.pb-lg-5{padding-bottom:32px !important}.pl-lg-5{padding-left:32px !important}.px-lg-5{padding-right:32px !important;padding-left:32px !important}.py-lg-5{padding-top:32px !important;padding-bottom:32px !important}.p-lg-6{padding:40px !important}.pt-lg-6{padding-top:40px !important}.pr-lg-6{padding-right:40px !important}.pb-lg-6{padding-bottom:40px !important}.pl-lg-6{padding-left:40px !important}.px-lg-6{padding-right:40px !important;padding-left:40px !important}.py-lg-6{padding-top:40px !important;padding-bottom:40px !important}}@media (min-width: 1280px){.p-xl-0{padding:0 !important}.pt-xl-0{padding-top:0 !important}.pr-xl-0{padding-right:0 !important}.pb-xl-0{padding-bottom:0 !important}.pl-xl-0{padding-left:0 !important}.px-xl-0{padding-right:0 !important;padding-left:0 !important}.py-xl-0{padding-top:0 !important;padding-bottom:0 !important}.p-xl-1{padding:4px !important}.pt-xl-1{padding-top:4px !important}.pr-xl-1{padding-right:4px !important}.pb-xl-1{padding-bottom:4px !important}.pl-xl-1{padding-left:4px !important}.px-xl-1{padding-right:4px !important;padding-left:4px !important}.py-xl-1{padding-top:4px !important;padding-bottom:4px !important}.p-xl-2{padding:8px !important}.pt-xl-2{padding-top:8px !important}.pr-xl-2{padding-right:8px !important}.pb-xl-2{padding-bottom:8px !important}.pl-xl-2{padding-left:8px !important}.px-xl-2{padding-right:8px !important;padding-left:8px !important}.py-xl-2{padding-top:8px !important;padding-bottom:8px !important}.p-xl-3{padding:16px !important}.pt-xl-3{padding-top:16px !important}.pr-xl-3{padding-right:16px !important}.pb-xl-3{padding-bottom:16px !important}.pl-xl-3{padding-left:16px !important}.px-xl-3{padding-right:16px !important;padding-left:16px !important}.py-xl-3{padding-top:16px !important;padding-bottom:16px !important}.p-xl-4{padding:24px !important}.pt-xl-4{padding-top:24px !important}.pr-xl-4{padding-right:24px !important}.pb-xl-4{padding-bottom:24px !important}.pl-xl-4{padding-left:24px !important}.px-xl-4{padding-right:24px !important;padding-left:24px !important}.py-xl-4{padding-top:24px !important;padding-bottom:24px !important}.p-xl-5{padding:32px !important}.pt-xl-5{padding-top:32px !important}.pr-xl-5{padding-right:32px !important}.pb-xl-5{padding-bottom:32px !important}.pl-xl-5{padding-left:32px !important}.px-xl-5{padding-right:32px !important;padding-left:32px !important}.py-xl-5{padding-top:32px !important;padding-bottom:32px !important}.p-xl-6{padding:40px !important}.pt-xl-6{padding-top:40px !important}.pr-xl-6{padding-right:40px !important}.pb-xl-6{padding-bottom:40px !important}.pl-xl-6{padding-left:40px !important}.px-xl-6{padding-right:40px !important;padding-left:40px !important}.py-xl-6{padding-top:40px !important;padding-bottom:40px !important}}.p-responsive{padding-right:16px !important;padding-left:16px !important}@media (min-width: 544px){.p-responsive{padding-right:40px !important;padding-left:40px !important}}@media (min-width: 1012px){.p-responsive{padding-right:16px !important;padding-left:16px !important}}.h1{font-size:26px !important}@media (min-width: 768px){.h1{font-size:32px !important}}.h2{font-size:22px !important}@media (min-width: 768px){.h2{font-size:24px !important}}.h3{font-size:18px !important}@media (min-width: 768px){.h3{font-size:20px !important}}.h4{font-size:16px !important}.h5{font-size:14px !important}.h6{font-size:12px !important}.h1,.h2,.h3,.h4,.h5,.h6{font-weight:600 !important}.f1{font-size:26px !important}@media (min-width: 768px){.f1{font-size:32px !important}}.f2{font-size:22px !important}@media (min-width: 768px){.f2{font-size:24px !important}}.f3{font-size:18px !important}@media (min-width: 768px){.f3{font-size:20px !important}}.f4{font-size:16px !important}@media (min-width: 768px){.f4{font-size:16px !important}}.f5{font-size:14px !important}.f6{font-size:12px !important}.f00-light{font-size:40px !important;font-weight:300 !important}@media (min-width: 768px){.f00-light{font-size:48px !important}}.f0-light{font-size:32px !important;font-weight:300 !important}@media (min-width: 768px){.f0-light{font-size:40px !important}}.f1-light{font-size:26px !important;font-weight:300 !important}@media (min-width: 768px){.f1-light{font-size:32px !important}}.f2-light{font-size:22px !important;font-weight:300 !important}@media (min-width: 768px){.f2-light{font-size:24px !important}}.f3-light{font-size:18px !important;font-weight:300 !important}@media (min-width: 768px){.f3-light{font-size:20px !important}}.text-small{font-size:12px !important}.lead{margin-bottom:30px;font-size:20px;font-weight:300;color:#586069}.lh-condensed-ultra{line-height:1 !important}.lh-condensed{line-height:1.25 !important}.lh-default{line-height:1.5 !important}.lh-0{line-height:0 !important}.text-right{text-align:right !important}.text-left{text-align:left !important}.text-center{text-align:center !important}@media (min-width: 544px){.text-sm-right{text-align:right !important}.text-sm-left{text-align:left !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-right{text-align:right !important}.text-md-left{text-align:left !important}.text-md-center{text-align:center !important}}@media (min-width: 1012px){.text-lg-right{text-align:right !important}.text-lg-left{text-align:left !important}.text-lg-center{text-align:center !important}}@media (min-width: 1280px){.text-xl-right{text-align:right !important}.text-xl-left{text-align:left !important}.text-xl-center{text-align:center !important}}.text-normal{font-weight:400 !important}.text-bold{font-weight:600 !important}.text-italic{font-style:italic !important}.text-uppercase{text-transform:uppercase !important}.text-underline{text-decoration:underline !important}.no-underline{text-decoration:none !important}.no-wrap{white-space:nowrap !important}.ws-normal{white-space:normal !important}.wb-break-all{word-break:break-all !important}.text-emphasized{font-weight:600;color:#24292e}.list-style-none{list-style:none !important}.text-shadow-dark{text-shadow:0 1px 1px rgba(27,31,35,0.25),0 1px 25px rgba(27,31,35,0.75)}.text-shadow-light{text-shadow:0 1px 0 rgba(255,255,255,0.5)}.text-mono{font-family:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,monospace}.user-select-none{user-select:none !important}.d-block{display:block !important}.d-flex{display:flex !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-inline-flex{display:inline-flex !important}.d-none{display:none !important}.d-table{display:table !important}.d-table-cell{display:table-cell !important}@media (min-width: 544px){.d-sm-block{display:block !important}.d-sm-flex{display:flex !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-inline-flex{display:inline-flex !important}.d-sm-none{display:none !important}.d-sm-table{display:table !important}.d-sm-table-cell{display:table-cell !important}}@media (min-width: 768px){.d-md-block{display:block !important}.d-md-flex{display:flex !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-inline-flex{display:inline-flex !important}.d-md-none{display:none !important}.d-md-table{display:table !important}.d-md-table-cell{display:table-cell !important}}@media (min-width: 1012px){.d-lg-block{display:block !important}.d-lg-flex{display:flex !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-inline-flex{display:inline-flex !important}.d-lg-none{display:none !important}.d-lg-table{display:table !important}.d-lg-table-cell{display:table-cell !important}}@media (min-width: 1280px){.d-xl-block{display:block !important}.d-xl-flex{display:flex !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-inline-flex{display:inline-flex !important}.d-xl-none{display:none !important}.d-xl-table{display:table !important}.d-xl-table-cell{display:table-cell !important}}.v-hidden{visibility:hidden !important}.v-visible{visibility:visible !important}@media (max-width: 544px){.hide-sm{display:none !important}}@media (min-width: 544px) and (max-width: 768px){.hide-md{display:none !important}}@media (min-width: 768px) and (max-width: 1012px){.hide-lg{display:none !important}}@media (min-width: 1012px){.hide-xl{display:none !important}}.table-fixed{table-layout:fixed !important}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);word-wrap:normal;border:0}.show-on-focus{position:absolute;width:1px;height:1px;margin:0;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}.show-on-focus:focus{z-index:20;width:auto;height:auto;clip:auto}.container{width:980px;margin-right:auto;margin-left:auto}.container::before{display:table;content:""}.container::after{display:table;clear:both;content:""}.container-md{max-width:768px;margin-right:auto;margin-left:auto}.container-lg{max-width:1012px;margin-right:auto;margin-left:auto}.container-xl{max-width:1280px;margin-right:auto;margin-left:auto}.columns{margin-right:-10px;margin-left:-10px}.columns::before{display:table;content:""}.columns::after{display:table;clear:both;content:""}.column{float:left;padding-right:10px;padding-left:10px}.one-third{width:33.333333%}.two-thirds{width:66.666667%}.one-fourth{width:25%}.one-half{width:50%}.three-fourths{width:75%}.one-fifth{width:20%}.four-fifths{width:80%}.centered{display:block;float:none;margin-right:auto;margin-left:auto}.col-1{width:8.3333333333%}.col-2{width:16.6666666667%}.col-3{width:25%}.col-4{width:33.3333333333%}.col-5{width:41.6666666667%}.col-6{width:50%}.col-7{width:58.3333333333%}.col-8{width:66.6666666667%}.col-9{width:75%}.col-10{width:83.3333333333%}.col-11{width:91.6666666667%}.col-12{width:100%}@media (min-width: 544px){.col-sm-1{width:8.3333333333%}.col-sm-2{width:16.6666666667%}.col-sm-3{width:25%}.col-sm-4{width:33.3333333333%}.col-sm-5{width:41.6666666667%}.col-sm-6{width:50%}.col-sm-7{width:58.3333333333%}.col-sm-8{width:66.6666666667%}.col-sm-9{width:75%}.col-sm-10{width:83.3333333333%}.col-sm-11{width:91.6666666667%}.col-sm-12{width:100%}}@media (min-width: 768px){.col-md-1{width:8.3333333333%}.col-md-2{width:16.6666666667%}.col-md-3{width:25%}.col-md-4{width:33.3333333333%}.col-md-5{width:41.6666666667%}.col-md-6{width:50%}.col-md-7{width:58.3333333333%}.col-md-8{width:66.6666666667%}.col-md-9{width:75%}.col-md-10{width:83.3333333333%}.col-md-11{width:91.6666666667%}.col-md-12{width:100%}}@media (min-width: 1012px){.col-lg-1{width:8.3333333333%}.col-lg-2{width:16.6666666667%}.col-lg-3{width:25%}.col-lg-4{width:33.3333333333%}.col-lg-5{width:41.6666666667%}.col-lg-6{width:50%}.col-lg-7{width:58.3333333333%}.col-lg-8{width:66.6666666667%}.col-lg-9{width:75%}.col-lg-10{width:83.3333333333%}.col-lg-11{width:91.6666666667%}.col-lg-12{width:100%}}@media (min-width: 1280px){.col-xl-1{width:8.3333333333%}.col-xl-2{width:16.6666666667%}.col-xl-3{width:25%}.col-xl-4{width:33.3333333333%}.col-xl-5{width:41.6666666667%}.col-xl-6{width:50%}.col-xl-7{width:58.3333333333%}.col-xl-8{width:66.6666666667%}.col-xl-9{width:75%}.col-xl-10{width:83.3333333333%}.col-xl-11{width:91.6666666667%}.col-xl-12{width:100%}}.gutter{margin-right:-16px;margin-left:-16px}.gutter>[class*="col-"]{padding-right:16px !important;padding-left:16px !important}.gutter-condensed{margin-right:-8px;margin-left:-8px}.gutter-condensed>[class*="col-"]{padding-right:8px !important;padding-left:8px !important}.gutter-spacious{margin-right:-24px;margin-left:-24px}.gutter-spacious>[class*="col-"]{padding-right:24px !important;padding-left:24px !important}@media (min-width: 544px){.gutter-sm{margin-right:-16px;margin-left:-16px}.gutter-sm>[class*="col-"]{padding-right:16px !important;padding-left:16px !important}.gutter-sm-condensed{margin-right:-8px;margin-left:-8px}.gutter-sm-condensed>[class*="col-"]{padding-right:8px !important;padding-left:8px !important}.gutter-sm-spacious{margin-right:-24px;margin-left:-24px}.gutter-sm-spacious>[class*="col-"]{padding-right:24px !important;padding-left:24px !important}}@media (min-width: 768px){.gutter-md{margin-right:-16px;margin-left:-16px}.gutter-md>[class*="col-"]{padding-right:16px !important;padding-left:16px !important}.gutter-md-condensed{margin-right:-8px;margin-left:-8px}.gutter-md-condensed>[class*="col-"]{padding-right:8px !important;padding-left:8px !important}.gutter-md-spacious{margin-right:-24px;margin-left:-24px}.gutter-md-spacious>[class*="col-"]{padding-right:24px !important;padding-left:24px !important}}@media (min-width: 1012px){.gutter-lg{margin-right:-16px;margin-left:-16px}.gutter-lg>[class*="col-"]{padding-right:16px !important;padding-left:16px !important}.gutter-lg-condensed{margin-right:-8px;margin-left:-8px}.gutter-lg-condensed>[class*="col-"]{padding-right:8px !important;padding-left:8px !important}.gutter-lg-spacious{margin-right:-24px;margin-left:-24px}.gutter-lg-spacious>[class*="col-"]{padding-right:24px !important;padding-left:24px !important}}@media (min-width: 1280px){.gutter-xl{margin-right:-16px;margin-left:-16px}.gutter-xl>[class*="col-"]{padding-right:16px !important;padding-left:16px !important}.gutter-xl-condensed{margin-right:-8px;margin-left:-8px}.gutter-xl-condensed>[class*="col-"]{padding-right:8px !important;padding-left:8px !important}.gutter-xl-spacious{margin-right:-24px;margin-left:-24px}.gutter-xl-spacious>[class*="col-"]{padding-right:24px !important;padding-left:24px !important}}.offset-1{margin-left:8.3333333333% !important}.offset-2{margin-left:16.6666666667% !important}.offset-3{margin-left:25% !important}.offset-4{margin-left:33.3333333333% !important}.offset-5{margin-left:41.6666666667% !important}.offset-6{margin-left:50% !important}.offset-7{margin-left:58.3333333333% !important}.offset-8{margin-left:66.6666666667% !important}.offset-9{margin-left:75% !important}.offset-10{margin-left:83.3333333333% !important}.offset-11{margin-left:91.6666666667% !important}@media (min-width: 544px){.offset-sm-1{margin-left:8.3333333333% !important}.offset-sm-2{margin-left:16.6666666667% !important}.offset-sm-3{margin-left:25% !important}.offset-sm-4{margin-left:33.3333333333% !important}.offset-sm-5{margin-left:41.6666666667% !important}.offset-sm-6{margin-left:50% !important}.offset-sm-7{margin-left:58.3333333333% !important}.offset-sm-8{margin-left:66.6666666667% !important}.offset-sm-9{margin-left:75% !important}.offset-sm-10{margin-left:83.3333333333% !important}.offset-sm-11{margin-left:91.6666666667% !important}}@media (min-width: 768px){.offset-md-1{margin-left:8.3333333333% !important}.offset-md-2{margin-left:16.6666666667% !important}.offset-md-3{margin-left:25% !important}.offset-md-4{margin-left:33.3333333333% !important}.offset-md-5{margin-left:41.6666666667% !important}.offset-md-6{margin-left:50% !important}.offset-md-7{margin-left:58.3333333333% !important}.offset-md-8{margin-left:66.6666666667% !important}.offset-md-9{margin-left:75% !important}.offset-md-10{margin-left:83.3333333333% !important}.offset-md-11{margin-left:91.6666666667% !important}}@media (min-width: 1012px){.offset-lg-1{margin-left:8.3333333333% !important}.offset-lg-2{margin-left:16.6666666667% !important}.offset-lg-3{margin-left:25% !important}.offset-lg-4{margin-left:33.3333333333% !important}.offset-lg-5{margin-left:41.6666666667% !important}.offset-lg-6{margin-left:50% !important}.offset-lg-7{margin-left:58.3333333333% !important}.offset-lg-8{margin-left:66.6666666667% !important}.offset-lg-9{margin-left:75% !important}.offset-lg-10{margin-left:83.3333333333% !important}.offset-lg-11{margin-left:91.6666666667% !important}}@media (min-width: 1280px){.offset-xl-1{margin-left:8.3333333333% !important}.offset-xl-2{margin-left:16.6666666667% !important}.offset-xl-3{margin-left:25% !important}.offset-xl-4{margin-left:33.3333333333% !important}.offset-xl-5{margin-left:41.6666666667% !important}.offset-xl-6{margin-left:50% !important}.offset-xl-7{margin-left:58.3333333333% !important}.offset-xl-8{margin-left:66.6666666667% !important}.offset-xl-9{margin-left:75% !important}.offset-xl-10{margin-left:83.3333333333% !important}.offset-xl-11{margin-left:91.6666666667% !important}}.markdown-body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:16px;line-height:1.5;word-wrap:break-word}.markdown-body::before{display:table;content:""}.markdown-body::after{display:table;clear:both;content:""}.markdown-body>*:first-child{margin-top:0 !important}.markdown-body>*:last-child{margin-bottom:0 !important}.markdown-body a:not([href]){color:inherit;text-decoration:none}.markdown-body .absent{color:#cb2431}.markdown-body .anchor{float:left;padding-right:4px;margin-left:-20px;line-height:1}.markdown-body .anchor:focus{outline:none}.markdown-body p,.markdown-body blockquote,.markdown-body ul,.markdown-body ol,.markdown-body dl,.markdown-body table,.markdown-body pre{margin-top:0;margin-bottom:16px}.markdown-body hr{height:.25em;padding:0;margin:24px 0;background-color:#e1e4e8;border:0}.markdown-body blockquote{padding:0 1em;color:#6a737d;border-left:0.25em solid #dfe2e5}.markdown-body blockquote>:first-child{margin-top:0}.markdown-body blockquote>:last-child{margin-bottom:0}.markdown-body kbd{display:inline-block;padding:3px 5px;font-size:11px;line-height:10px;color:#444d56;vertical-align:middle;background-color:#fafbfc;border:solid 1px #c6cbd1;border-bottom-color:#959da5;border-radius:3px;box-shadow:inset 0 -1px 0 #959da5}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:24px;margin-bottom:16px;font-weight:600;line-height:1.25}.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{color:#1b1f23;vertical-align:middle;visibility:hidden}.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{visibility:visible}.markdown-body h1 tt,.markdown-body h1 code,.markdown-body h2 tt,.markdown-body h2 code,.markdown-body h3 tt,.markdown-body h3 code,.markdown-body h4 tt,.markdown-body h4 code,.markdown-body h5 tt,.markdown-body h5 code,.markdown-body h6 tt,.markdown-body h6 code{font-size:inherit}.markdown-body h1{padding-bottom:0.3em;font-size:2em;border-bottom:1px solid #eaecef}.markdown-body h2{padding-bottom:0.3em;font-size:1.5em;border-bottom:1px solid #eaecef}.markdown-body h3{font-size:1.25em}.markdown-body h4{font-size:1em}.markdown-body h5{font-size:0.875em}.markdown-body h6{font-size:0.85em;color:#6a737d}.markdown-body ul,.markdown-body ol{padding-left:2em}.markdown-body ul.no-list,.markdown-body ol.no-list{padding:0;list-style-type:none}.markdown-body ul ul,.markdown-body ul ol,.markdown-body ol ol,.markdown-body ol ul{margin-top:0;margin-bottom:0}.markdown-body li{word-wrap:break-all}.markdown-body li>p{margin-top:16px}.markdown-body li+li{margin-top:.25em}.markdown-body dl{padding:0}.markdown-body dl dt{padding:0;margin-top:16px;font-size:1em;font-style:italic;font-weight:600}.markdown-body dl dd{padding:0 16px;margin-bottom:16px}.markdown-body table{display:block;width:100%;overflow:auto}.markdown-body table th{font-weight:600}.markdown-body table th,.markdown-body table td{padding:6px 13px;border:1px solid #dfe2e5}.markdown-body table tr{background-color:#fff;border-top:1px solid #c6cbd1}.markdown-body table tr:nth-child(2n){background-color:#f6f8fa}.markdown-body table img{background-color:transparent}.markdown-body img{max-width:100%;box-sizing:content-box;background-color:#fff}.markdown-body img[align=right]{padding-left:20px}.markdown-body img[align=left]{padding-right:20px}.markdown-body .emoji{max-width:none;vertical-align:text-top;background-color:transparent}.markdown-body span.frame{display:block;overflow:hidden}.markdown-body span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #dfe2e5}.markdown-body span.frame span img{display:block;float:left}.markdown-body span.frame span span{display:block;padding:5px 0 0;clear:both;color:#24292e}.markdown-body span.align-center{display:block;overflow:hidden;clear:both}.markdown-body span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown-body span.align-center span img{margin:0 auto;text-align:center}.markdown-body span.align-right{display:block;overflow:hidden;clear:both}.markdown-body span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown-body span.align-right span img{margin:0;text-align:right}.markdown-body span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown-body span.float-left span{margin:13px 0 0}.markdown-body span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown-body span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown-body code,.markdown-body tt{padding:0.2em 0.4em;margin:0;font-size:85%;background-color:rgba(27,31,35,0.05);border-radius:3px}.markdown-body code br,.markdown-body tt br{display:none}.markdown-body del code{text-decoration:inherit}.markdown-body pre{word-wrap:normal}.markdown-body pre>code{padding:0;margin:0;font-size:100%;word-break:normal;white-space:pre;background:transparent;border:0}.markdown-body .highlight{margin-bottom:16px}.markdown-body .highlight pre{margin-bottom:0;word-break:normal}.markdown-body .highlight pre,.markdown-body pre{padding:16px;overflow:auto;font-size:85%;line-height:1.45;background-color:#f6f8fa;border-radius:3px}.markdown-body pre code,.markdown-body pre tt{display:inline;max-width:auto;padding:0;margin:0;overflow:visible;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown-body .csv-data td,.markdown-body .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown-body .csv-data .blob-num{padding:10px 8px 9px;text-align:right;background:#fff;border:0}.markdown-body .csv-data tr{border-top:0}.markdown-body .csv-data th{font-weight:600;background:#f6f8fa;border-top:0}.highlight table td{padding:5px}.highlight table pre{margin:0}.highlight .cm{color:#999988;font-style:italic}.highlight .cp{color:#999999;font-weight:bold}.highlight .c1{color:#999988;font-style:italic}.highlight .cs{color:#999999;font-weight:bold;font-style:italic}.highlight .c,.highlight .cd{color:#999988;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .gd{color:#000000;background-color:#ffdddd}.highlight .ge{color:#000000;font-style:italic}.highlight .gr{color:#aa0000}.highlight .gh{color:#999999}.highlight .gi{color:#000000;background-color:#ddffdd}.highlight .go{color:#888888}.highlight .gp{color:#555555}.highlight .gs{font-weight:bold}.highlight .gu{color:#aaaaaa}.highlight .gt{color:#aa0000}.highlight .kc{color:#000000;font-weight:bold}.highlight .kd{color:#000000;font-weight:bold}.highlight .kn{color:#000000;font-weight:bold}.highlight .kp{color:#000000;font-weight:bold}.highlight .kr{color:#000000;font-weight:bold}.highlight .kt{color:#445588;font-weight:bold}.highlight .k,.highlight .kv{color:#000000;font-weight:bold}.highlight .mf{color:#009999}.highlight .mh{color:#009999}.highlight .il{color:#009999}.highlight .mi{color:#009999}.highlight .mo{color:#009999}.highlight .m,.highlight .mb,.highlight .mx{color:#009999}.highlight .sb{color:#d14}.highlight .sc{color:#d14}.highlight .sd{color:#d14}.highlight .s2{color:#d14}.highlight .se{color:#d14}.highlight .sh{color:#d14}.highlight .si{color:#d14}.highlight .sx{color:#d14}.highlight .sr{color:#009926}.highlight .s1{color:#d14}.highlight .ss{color:#990073}.highlight .s{color:#d14}.highlight .na{color:#008080}.highlight .bp{color:#999999}.highlight .nb{color:#0086B3}.highlight .nc{color:#445588;font-weight:bold}.highlight .no{color:#008080}.highlight .nd{color:#3c5d5d;font-weight:bold}.highlight .ni{color:#800080}.highlight .ne{color:#990000;font-weight:bold}.highlight .nf{color:#990000;font-weight:bold}.highlight .nl{color:#990000;font-weight:bold}.highlight .nn{color:#555555}.highlight .nt{color:#000080}.highlight .vc{color:#008080}.highlight .vg{color:#008080}.highlight .vi{color:#008080}.highlight .nv{color:#008080}.highlight .ow{color:#000000;font-weight:bold}.highlight .o{color:#000000;font-weight:bold}.highlight .w{color:#bbbbbb}.highlight{background-color:#f8f8f8} diff --git a/assets/css/styles_feeling_responsive.css b/assets/css/styles_feeling_responsive.css new file mode 100644 index 000000000..a63b038c8 --- /dev/null +++ b/assets/css/styles_feeling_responsive.css @@ -0,0 +1,4 @@ +.font-size-h1{font-size:2.441em}.font-size-h2{font-size:1.953em}.font-size-h3{font-size:1.563em}.font-size-h4{font-size:1.25em}.font-size-h5{font-size:1.152em}meta.foundation-version{font-family:"/5.5.0/"}meta.foundation-mq-small{font-family:"/only screen/";width:0em}meta.foundation-mq-small-only{font-family:"/only screen and (max-width: 40em)/";width:0em}meta.foundation-mq-medium{font-family:"/only screen and (min-width:40.063em)/";width:40.063em}meta.foundation-mq-medium-only{font-family:"/only screen and (min-width:40.063em) and (max-width:64em)/";width:40.063em}meta.foundation-mq-large{font-family:"/only screen and (min-width:64.063em)/";width:64.063em}meta.foundation-mq-large-only{font-family:"/only screen and (min-width:64.063em) and (max-width:90em)/";width:64.063em}meta.foundation-mq-xlarge{font-family:"/only screen and (min-width:90.063em)/";width:90.063em}meta.foundation-mq-xlarge-only{font-family:"/only screen and (min-width:90.063em) and (max-width:120em)/";width:90.063em}meta.foundation-mq-xxlarge{font-family:"/only screen and (min-width:120.063em)/";width:120.063em}meta.foundation-data-attribute-namespace{font-family:false}html,body{height:100%}*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html,body{font-size:16px}body{background:#fdfdfd;color:#111;padding:0;margin:0;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:normal;font-style:normal;line-height:1.5;position:relative;cursor:auto}a:hover{cursor:pointer}img{max-width:100%;height:auto}img{-ms-interpolation-mode:bicubic}#map_canvas img,#map_canvas embed,#map_canvas object,.map_canvas img,.map_canvas embed,.map_canvas object{max-width:none !important}.left{float:left !important}.right{float:right !important}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.hide{display:none !important;visibility:hidden}.invisible{visibility:hidden}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}img{display:inline-block;vertical-align:middle}textarea{height:auto;min-height:50px}select{width:100%}/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}.row{width:100%;margin-left:auto;margin-right:auto;margin-top:0;margin-bottom:0;max-width:62.5rem}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.row.collapse>.column,.row.collapse>.columns{padding-left:0;padding-right:0}.row.collapse .row{margin-left:0;margin-right:0}.row .row{width:auto;margin-left:-0.9375rem;margin-right:-0.9375rem;margin-top:0;margin-bottom:0;max-width:none}.row .row:before,.row .row:after{content:" ";display:table}.row .row:after{clear:both}.row .row.collapse{width:auto;margin:0;max-width:none}.row .row.collapse:before,.row .row.collapse:after{content:" ";display:table}.row .row.collapse:after{clear:both}.column,.columns{padding-left:.9375rem;padding-right:.9375rem;width:100%;float:left}[class*="column"]+[class*="column"]:last-child{float:right}[class*="column"]+[class*="column"].end{float:left}@media only screen{.small-push-0{position:relative;left:0%;right:auto}.small-pull-0{position:relative;right:0%;left:auto}.small-push-1{position:relative;left:8.3333333333%;right:auto}.small-pull-1{position:relative;right:8.3333333333%;left:auto}.small-push-2{position:relative;left:16.6666666667%;right:auto}.small-pull-2{position:relative;right:16.6666666667%;left:auto}.small-push-3{position:relative;left:25%;right:auto}.small-pull-3{position:relative;right:25%;left:auto}.small-push-4{position:relative;left:33.3333333333%;right:auto}.small-pull-4{position:relative;right:33.3333333333%;left:auto}.small-push-5{position:relative;left:41.6666666667%;right:auto}.small-pull-5{position:relative;right:41.6666666667%;left:auto}.small-push-6{position:relative;left:50%;right:auto}.small-pull-6{position:relative;right:50%;left:auto}.small-push-7{position:relative;left:58.3333333333%;right:auto}.small-pull-7{position:relative;right:58.3333333333%;left:auto}.small-push-8{position:relative;left:66.6666666667%;right:auto}.small-pull-8{position:relative;right:66.6666666667%;left:auto}.small-push-9{position:relative;left:75%;right:auto}.small-pull-9{position:relative;right:75%;left:auto}.small-push-10{position:relative;left:83.3333333333%;right:auto}.small-pull-10{position:relative;right:83.3333333333%;left:auto}.small-push-11{position:relative;left:91.6666666667%;right:auto}.small-pull-11{position:relative;right:91.6666666667%;left:auto}.column,.columns{position:relative;padding-left:.9375rem;padding-right:.9375rem;float:left}.small-1{width:8.3333333333%}.small-2{width:16.6666666667%}.small-3{width:25%}.small-4{width:33.3333333333%}.small-5{width:41.6666666667%}.small-6{width:50%}.small-7{width:58.3333333333%}.small-8{width:66.6666666667%}.small-9{width:75%}.small-10{width:83.3333333333%}.small-11{width:91.6666666667%}.small-12{width:100%}.small-offset-0{margin-left:0% !important}.small-offset-1{margin-left:8.3333333333% !important}.small-offset-2{margin-left:16.6666666667% !important}.small-offset-3{margin-left:25% !important}.small-offset-4{margin-left:33.3333333333% !important}.small-offset-5{margin-left:41.6666666667% !important}.small-offset-6{margin-left:50% !important}.small-offset-7{margin-left:58.3333333333% !important}.small-offset-8{margin-left:66.6666666667% !important}.small-offset-9{margin-left:75% !important}.small-offset-10{margin-left:83.3333333333% !important}.small-offset-11{margin-left:91.6666666667% !important}.small-reset-order{margin-left:0;margin-right:0;left:auto;right:auto;float:left}.column.small-centered,.columns.small-centered{margin-left:auto;margin-right:auto;float:none}.column.small-uncentered,.columns.small-uncentered{margin-left:0;margin-right:0;float:left}.column.small-centered:last-child,.columns.small-centered:last-child{float:none}.column.small-uncentered:last-child,.columns.small-uncentered:last-child{float:left}.column.small-uncentered.opposite,.columns.small-uncentered.opposite{float:right}.row.small-collapse>.column,.row.small-collapse>.columns{padding-left:0;padding-right:0}.row.small-collapse .row{margin-left:0;margin-right:0}.row.small-uncollapse>.column,.row.small-uncollapse>.columns{padding-left:.9375rem;padding-right:.9375rem;float:left}}@media only screen and (min-width: 40.063em){.medium-push-0{position:relative;left:0%;right:auto}.medium-pull-0{position:relative;right:0%;left:auto}.medium-push-1{position:relative;left:8.3333333333%;right:auto}.medium-pull-1{position:relative;right:8.3333333333%;left:auto}.medium-push-2{position:relative;left:16.6666666667%;right:auto}.medium-pull-2{position:relative;right:16.6666666667%;left:auto}.medium-push-3{position:relative;left:25%;right:auto}.medium-pull-3{position:relative;right:25%;left:auto}.medium-push-4{position:relative;left:33.3333333333%;right:auto}.medium-pull-4{position:relative;right:33.3333333333%;left:auto}.medium-push-5{position:relative;left:41.6666666667%;right:auto}.medium-pull-5{position:relative;right:41.6666666667%;left:auto}.medium-push-6{position:relative;left:50%;right:auto}.medium-pull-6{position:relative;right:50%;left:auto}.medium-push-7{position:relative;left:58.3333333333%;right:auto}.medium-pull-7{position:relative;right:58.3333333333%;left:auto}.medium-push-8{position:relative;left:66.6666666667%;right:auto}.medium-pull-8{position:relative;right:66.6666666667%;left:auto}.medium-push-9{position:relative;left:75%;right:auto}.medium-pull-9{position:relative;right:75%;left:auto}.medium-push-10{position:relative;left:83.3333333333%;right:auto}.medium-pull-10{position:relative;right:83.3333333333%;left:auto}.medium-push-11{position:relative;left:91.6666666667%;right:auto}.medium-pull-11{position:relative;right:91.6666666667%;left:auto}.column,.columns{position:relative;padding-left:.9375rem;padding-right:.9375rem;float:left}.medium-1{width:8.3333333333%}.medium-2{width:16.6666666667%}.medium-3{width:25%}.medium-4{width:33.3333333333%}.medium-5{width:41.6666666667%}.medium-6{width:50%}.medium-7{width:58.3333333333%}.medium-8{width:66.6666666667%}.medium-9{width:75%}.medium-10{width:83.3333333333%}.medium-11{width:91.6666666667%}.medium-12{width:100%}.medium-offset-0{margin-left:0% !important}.medium-offset-1{margin-left:8.3333333333% !important}.medium-offset-2{margin-left:16.6666666667% !important}.medium-offset-3{margin-left:25% !important}.medium-offset-4{margin-left:33.3333333333% !important}.medium-offset-5{margin-left:41.6666666667% !important}.medium-offset-6{margin-left:50% !important}.medium-offset-7{margin-left:58.3333333333% !important}.medium-offset-8{margin-left:66.6666666667% !important}.medium-offset-9{margin-left:75% !important}.medium-offset-10{margin-left:83.3333333333% !important}.medium-offset-11{margin-left:91.6666666667% !important}.medium-reset-order{margin-left:0;margin-right:0;left:auto;right:auto;float:left}.column.medium-centered,.columns.medium-centered{margin-left:auto;margin-right:auto;float:none}.column.medium-uncentered,.columns.medium-uncentered{margin-left:0;margin-right:0;float:left}.column.medium-centered:last-child,.columns.medium-centered:last-child{float:none}.column.medium-uncentered:last-child,.columns.medium-uncentered:last-child{float:left}.column.medium-uncentered.opposite,.columns.medium-uncentered.opposite{float:right}.row.medium-collapse>.column,.row.medium-collapse>.columns{padding-left:0;padding-right:0}.row.medium-collapse .row{margin-left:0;margin-right:0}.row.medium-uncollapse>.column,.row.medium-uncollapse>.columns{padding-left:.9375rem;padding-right:.9375rem;float:left}.push-0{position:relative;left:0%;right:auto}.pull-0{position:relative;right:0%;left:auto}.push-1{position:relative;left:8.3333333333%;right:auto}.pull-1{position:relative;right:8.3333333333%;left:auto}.push-2{position:relative;left:16.6666666667%;right:auto}.pull-2{position:relative;right:16.6666666667%;left:auto}.push-3{position:relative;left:25%;right:auto}.pull-3{position:relative;right:25%;left:auto}.push-4{position:relative;left:33.3333333333%;right:auto}.pull-4{position:relative;right:33.3333333333%;left:auto}.push-5{position:relative;left:41.6666666667%;right:auto}.pull-5{position:relative;right:41.6666666667%;left:auto}.push-6{position:relative;left:50%;right:auto}.pull-6{position:relative;right:50%;left:auto}.push-7{position:relative;left:58.3333333333%;right:auto}.pull-7{position:relative;right:58.3333333333%;left:auto}.push-8{position:relative;left:66.6666666667%;right:auto}.pull-8{position:relative;right:66.6666666667%;left:auto}.push-9{position:relative;left:75%;right:auto}.pull-9{position:relative;right:75%;left:auto}.push-10{position:relative;left:83.3333333333%;right:auto}.pull-10{position:relative;right:83.3333333333%;left:auto}.push-11{position:relative;left:91.6666666667%;right:auto}.pull-11{position:relative;right:91.6666666667%;left:auto}}@media only screen and (min-width: 64.063em){.large-push-0{position:relative;left:0%;right:auto}.large-pull-0{position:relative;right:0%;left:auto}.large-push-1{position:relative;left:8.3333333333%;right:auto}.large-pull-1{position:relative;right:8.3333333333%;left:auto}.large-push-2{position:relative;left:16.6666666667%;right:auto}.large-pull-2{position:relative;right:16.6666666667%;left:auto}.large-push-3{position:relative;left:25%;right:auto}.large-pull-3{position:relative;right:25%;left:auto}.large-push-4{position:relative;left:33.3333333333%;right:auto}.large-pull-4{position:relative;right:33.3333333333%;left:auto}.large-push-5{position:relative;left:41.6666666667%;right:auto}.large-pull-5{position:relative;right:41.6666666667%;left:auto}.large-push-6{position:relative;left:50%;right:auto}.large-pull-6{position:relative;right:50%;left:auto}.large-push-7{position:relative;left:58.3333333333%;right:auto}.large-pull-7{position:relative;right:58.3333333333%;left:auto}.large-push-8{position:relative;left:66.6666666667%;right:auto}.large-pull-8{position:relative;right:66.6666666667%;left:auto}.large-push-9{position:relative;left:75%;right:auto}.large-pull-9{position:relative;right:75%;left:auto}.large-push-10{position:relative;left:83.3333333333%;right:auto}.large-pull-10{position:relative;right:83.3333333333%;left:auto}.large-push-11{position:relative;left:91.6666666667%;right:auto}.large-pull-11{position:relative;right:91.6666666667%;left:auto}.column,.columns{position:relative;padding-left:.9375rem;padding-right:.9375rem;float:left}.large-1{width:8.3333333333%}.large-2{width:16.6666666667%}.large-3{width:25%}.large-4{width:33.3333333333%}.large-5{width:41.6666666667%}.large-6{width:50%}.large-7{width:58.3333333333%}.large-8{width:66.6666666667%}.large-9{width:75%}.large-10{width:83.3333333333%}.large-11{width:91.6666666667%}.large-12{width:100%}.large-offset-0{margin-left:0% !important}.large-offset-1{margin-left:8.3333333333% !important}.large-offset-2{margin-left:16.6666666667% !important}.large-offset-3{margin-left:25% !important}.large-offset-4{margin-left:33.3333333333% !important}.large-offset-5{margin-left:41.6666666667% !important}.large-offset-6{margin-left:50% !important}.large-offset-7{margin-left:58.3333333333% !important}.large-offset-8{margin-left:66.6666666667% !important}.large-offset-9{margin-left:75% !important}.large-offset-10{margin-left:83.3333333333% !important}.large-offset-11{margin-left:91.6666666667% !important}.large-reset-order{margin-left:0;margin-right:0;left:auto;right:auto;float:left}.column.large-centered,.columns.large-centered{margin-left:auto;margin-right:auto;float:none}.column.large-uncentered,.columns.large-uncentered{margin-left:0;margin-right:0;float:left}.column.large-centered:last-child,.columns.large-centered:last-child{float:none}.column.large-uncentered:last-child,.columns.large-uncentered:last-child{float:left}.column.large-uncentered.opposite,.columns.large-uncentered.opposite{float:right}.row.large-collapse>.column,.row.large-collapse>.columns{padding-left:0;padding-right:0}.row.large-collapse .row{margin-left:0;margin-right:0}.row.large-uncollapse>.column,.row.large-uncollapse>.columns{padding-left:.9375rem;padding-right:.9375rem;float:left}.push-0{position:relative;left:0%;right:auto}.pull-0{position:relative;right:0%;left:auto}.push-1{position:relative;left:8.3333333333%;right:auto}.pull-1{position:relative;right:8.3333333333%;left:auto}.push-2{position:relative;left:16.6666666667%;right:auto}.pull-2{position:relative;right:16.6666666667%;left:auto}.push-3{position:relative;left:25%;right:auto}.pull-3{position:relative;right:25%;left:auto}.push-4{position:relative;left:33.3333333333%;right:auto}.pull-4{position:relative;right:33.3333333333%;left:auto}.push-5{position:relative;left:41.6666666667%;right:auto}.pull-5{position:relative;right:41.6666666667%;left:auto}.push-6{position:relative;left:50%;right:auto}.pull-6{position:relative;right:50%;left:auto}.push-7{position:relative;left:58.3333333333%;right:auto}.pull-7{position:relative;right:58.3333333333%;left:auto}.push-8{position:relative;left:66.6666666667%;right:auto}.pull-8{position:relative;right:66.6666666667%;left:auto}.push-9{position:relative;left:75%;right:auto}.pull-9{position:relative;right:75%;left:auto}.push-10{position:relative;left:83.3333333333%;right:auto}.pull-10{position:relative;right:83.3333333333%;left:auto}.push-11{position:relative;left:91.6666666667%;right:auto}.pull-11{position:relative;right:91.6666666667%;left:auto}}button,.button{border-style:solid;border-width:0;cursor:pointer;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:normal;line-height:normal;margin:0 0 1.25rem;position:relative;text-decoration:none;text-align:center;-webkit-appearance:none;border-radius:0;display:inline-block;padding-top:1rem;padding-right:2rem;padding-bottom:1.0625rem;padding-left:2rem;font-size:1rem;background-color:#BA4A00;border-color:#953b00;color:#fff;transition:background-color 300ms ease-out}button:hover,button:focus,.button:hover,.button:focus{background-color:#953b00}button:hover,button:focus,.button:hover,.button:focus{color:#fff}button.secondary,.button.secondary{background-color:#FDEBD0;border-color:#f9c578;color:#333}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{background-color:#f9c578}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{color:#333}button.success,.button.success{background-color:#A1D044;border-color:#84b02c;color:#fff}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{background-color:#84b02c}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{color:#fff}button.alert,.button.alert{background-color:#DF4949;border-color:#c92323;color:#fff}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{background-color:#c92323}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{color:#fff}button.warning,.button.warning{background-color:#E27A3F;border-color:#c95c1e;color:#fff}button.warning:hover,button.warning:focus,.button.warning:hover,.button.warning:focus{background-color:#c95c1e}button.warning:hover,button.warning:focus,.button.warning:hover,.button.warning:focus{color:#fff}button.info,.button.info{background-color:#334D5C;border-color:#293e4a;color:#fff}button.info:hover,button.info:focus,.button.info:hover,.button.info:focus{background-color:#293e4a}button.info:hover,button.info:focus,.button.info:hover,.button.info:focus{color:#fff}button.large,.button.large{padding-top:1.125rem;padding-right:2.25rem;padding-bottom:1.1875rem;padding-left:2.25rem;font-size:1.25rem}button.small,.button.small{padding-top:.875rem;padding-right:1.75rem;padding-bottom:.9375rem;padding-left:1.75rem;font-size:.8125rem}button.tiny,.button.tiny{padding-top:.625rem;padding-right:1.25rem;padding-bottom:.6875rem;padding-left:1.25rem;font-size:.6875rem}button.expand,.button.expand{padding-right:0;padding-left:0;width:100%}button.left-align,.button.left-align{text-align:left;text-indent:.75rem}button.right-align,.button.right-align{text-align:right;padding-right:.75rem}button.radius,.button.radius{border-radius:3px}button.round,.button.round{border-radius:1000px}button.disabled,button[disabled],.button.disabled,.button[disabled]{background-color:#BA4A00;border-color:#953b00;color:#fff;cursor:default;opacity:.7;box-shadow:none}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#953b00}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{color:#fff}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#BA4A00}button.disabled.secondary,button[disabled].secondary,.button.disabled.secondary,.button[disabled].secondary{background-color:#FDEBD0;border-color:#f9c578;color:#333;cursor:default;opacity:.7;box-shadow:none}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#f9c578}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{color:#333}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#FDEBD0}button.disabled.success,button[disabled].success,.button.disabled.success,.button[disabled].success{background-color:#A1D044;border-color:#84b02c;color:#fff;cursor:default;opacity:.7;box-shadow:none}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#84b02c}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{color:#fff}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#A1D044}button.disabled.alert,button[disabled].alert,.button.disabled.alert,.button[disabled].alert{background-color:#DF4949;border-color:#c92323;color:#fff;cursor:default;opacity:.7;box-shadow:none}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#c92323}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{color:#fff}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#DF4949}button.disabled.warning,button[disabled].warning,.button.disabled.warning,.button[disabled].warning{background-color:#E27A3F;border-color:#c95c1e;color:#fff;cursor:default;opacity:.7;box-shadow:none}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{background-color:#c95c1e}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{color:#fff}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{background-color:#E27A3F}button.disabled.info,button[disabled].info,.button.disabled.info,.button[disabled].info{background-color:#334D5C;border-color:#293e4a;color:#fff;cursor:default;opacity:.7;box-shadow:none}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{background-color:#293e4a}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{color:#fff}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{background-color:#334D5C}button::-moz-focus-inner{border:0;padding:0}@media only screen and (min-width: 40.063em){button,.button{display:inline-block}}form{margin:0 0 1rem}form .row .row{margin:0 -.5rem}form .row .row .column,form .row .row .columns{padding:0 .5rem}form .row .row.collapse{margin:0}form .row .row.collapse .column,form .row .row.collapse .columns{padding:0}form .row .row.collapse input{-webkit-border-bottom-right-radius:0;-webkit-border-top-right-radius:0;border-bottom-right-radius:0;border-top-right-radius:0}form .row input.column,form .row input.columns,form .row textarea.column,form .row textarea.columns{padding-left:.5rem}label{font-size:.875rem;color:#4d4d4d;cursor:pointer;display:block;font-weight:normal;line-height:1.5;margin-bottom:0}label.right{float:none !important;text-align:right}label.inline{margin:0 0 1rem 0;padding:.5625rem 0}label small{text-transform:capitalize;color:#676767}.prefix,.postfix{display:block;position:relative;z-index:2;text-align:center;width:100%;padding-top:0;padding-bottom:0;border-style:solid;border-width:1px;overflow:hidden;font-size:.875rem;height:2.3125rem;line-height:2.3125rem}.postfix.button{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;text-align:center;border:none}.prefix.button{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;text-align:center;border:none}.prefix.button.radius{border-radius:0;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.postfix.button.radius{border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}.prefix.button.round{border-radius:0;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.postfix.button.round{border-radius:0;-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}span.prefix,label.prefix{background:#f2f2f2;border-right:none;color:#333;border-color:#ccc}span.postfix,label.postfix{background:#f2f2f2;border-left:none;color:#333;border-color:#ccc}input[type="text"],input[type="password"],input[type="date"],input[type="datetime"],input[type="datetime-local"],input[type="month"],input[type="week"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="time"],input[type="url"],input[type="color"],textarea{-webkit-appearance:none;border-radius:0;background-color:#fff;font-family:inherit;border-style:solid;border-width:1px;border-color:#ccc;box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);color:rgba(0,0,0,0.75);display:block;font-size:.875rem;margin:0 0 1rem 0;padding:.5rem;height:2.3125rem;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;transition:box-shadow .45s,border-color .45s ease-in-out}input[type="text"]:focus,input[type="password"]:focus,input[type="date"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="month"]:focus,input[type="week"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="time"]:focus,input[type="url"]:focus,input[type="color"]:focus,textarea:focus{box-shadow:0 0 5px #999;border-color:#999}input[type="text"]:focus,input[type="password"]:focus,input[type="date"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="month"]:focus,input[type="week"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="time"]:focus,input[type="url"]:focus,input[type="color"]:focus,textarea:focus{background:#fafafa;border-color:#999;outline:none}input[type="text"]:disabled,input[type="password"]:disabled,input[type="date"]:disabled,input[type="datetime"]:disabled,input[type="datetime-local"]:disabled,input[type="month"]:disabled,input[type="week"]:disabled,input[type="email"]:disabled,input[type="number"]:disabled,input[type="search"]:disabled,input[type="tel"]:disabled,input[type="time"]:disabled,input[type="url"]:disabled,input[type="color"]:disabled,textarea:disabled{background-color:#ddd;cursor:default}input[type="text"][disabled],input[type="text"][readonly],fieldset[disabled] input[type="text"],input[type="password"][disabled],input[type="password"][readonly],fieldset[disabled] input[type="password"],input[type="date"][disabled],input[type="date"][readonly],fieldset[disabled] input[type="date"],input[type="datetime"][disabled],input[type="datetime"][readonly],fieldset[disabled] input[type="datetime"],input[type="datetime-local"][disabled],input[type="datetime-local"][readonly],fieldset[disabled] input[type="datetime-local"],input[type="month"][disabled],input[type="month"][readonly],fieldset[disabled] input[type="month"],input[type="week"][disabled],input[type="week"][readonly],fieldset[disabled] input[type="week"],input[type="email"][disabled],input[type="email"][readonly],fieldset[disabled] input[type="email"],input[type="number"][disabled],input[type="number"][readonly],fieldset[disabled] input[type="number"],input[type="search"][disabled],input[type="search"][readonly],fieldset[disabled] input[type="search"],input[type="tel"][disabled],input[type="tel"][readonly],fieldset[disabled] input[type="tel"],input[type="time"][disabled],input[type="time"][readonly],fieldset[disabled] input[type="time"],input[type="url"][disabled],input[type="url"][readonly],fieldset[disabled] input[type="url"],input[type="color"][disabled],input[type="color"][readonly],fieldset[disabled] input[type="color"],textarea[disabled],textarea[readonly],fieldset[disabled] textarea{background-color:#ddd;cursor:default}input[type="text"].radius,input[type="password"].radius,input[type="date"].radius,input[type="datetime"].radius,input[type="datetime-local"].radius,input[type="month"].radius,input[type="week"].radius,input[type="email"].radius,input[type="number"].radius,input[type="search"].radius,input[type="tel"].radius,input[type="time"].radius,input[type="url"].radius,input[type="color"].radius,textarea.radius{border-radius:3px}form .row .prefix-radius.row.collapse input,form .row .prefix-radius.row.collapse textarea,form .row .prefix-radius.row.collapse select{border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}form .row .prefix-radius.row.collapse .prefix{border-radius:0;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}form .row .postfix-radius.row.collapse input,form .row .postfix-radius.row.collapse textarea,form .row .postfix-radius.row.collapse select{border-radius:0;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}form .row .postfix-radius.row.collapse .postfix{border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}form .row .prefix-round.row.collapse input,form .row .prefix-round.row.collapse textarea,form .row .prefix-round.row.collapse select{border-radius:0;-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}form .row .prefix-round.row.collapse .prefix{border-radius:0;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}form .row .postfix-round.row.collapse input,form .row .postfix-round.row.collapse textarea,form .row .postfix-round.row.collapse select{border-radius:0;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}form .row .postfix-round.row.collapse .postfix{border-radius:0;-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}input[type="submit"]{-webkit-appearance:none;border-radius:0}textarea[rows]{height:auto}textarea{max-width:100%}select{-webkit-appearance:none !important;border-radius:0;background-color:#FAFAFA;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);background-position:100% center;background-repeat:no-repeat;border-style:solid;border-width:1px;border-color:#ccc;padding:.5rem;font-size:.875rem;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;color:rgba(0,0,0,0.75);line-height:normal;border-radius:0;height:2.3125rem}select::-ms-expand{display:none}select.radius{border-radius:3px}select:hover{background-color:#f3f3f3;border-color:#999}select:disabled{background-color:#ddd;cursor:default}input[type="file"],input[type="checkbox"],input[type="radio"],select{margin:0 0 1rem 0}input[type="checkbox"]+label,input[type="radio"]+label{display:inline-block;margin-left:.5rem;margin-right:1rem;margin-bottom:0;vertical-align:baseline}input[type="file"]{width:100%}fieldset{border:1px solid #ddd;padding:1.25rem;margin:1.125rem 0}fieldset legend{font-weight:bold;background:#fff;padding:0 .1875rem;margin:0;margin-left:-.1875rem}[data-abide] .error small.error,[data-abide] .error span.error,[data-abide] span.error,[data-abide] small.error{display:block;padding:.375rem .5625rem .5625rem;margin-top:-1px;margin-bottom:1rem;font-size:.75rem;font-weight:normal;font-style:italic;background:#DF4949;color:#fff}[data-abide] span.error,[data-abide] small.error{display:none}span.error,small.error{display:block;padding:.375rem .5625rem .5625rem;margin-top:-1px;margin-bottom:1rem;font-size:.75rem;font-weight:normal;font-style:italic;background:#DF4949;color:#fff}.error input,.error textarea,.error select{margin-bottom:0}.error input[type="checkbox"],.error input[type="radio"]{margin-bottom:1rem}.error label,.error label.error{color:#DF4949}.error small.error{display:block;padding:.375rem .5625rem .5625rem;margin-top:-1px;margin-bottom:1rem;font-size:.75rem;font-weight:normal;font-style:italic;background:#DF4949;color:#fff}.error>label>small{color:#676767;background:transparent;padding:0;text-transform:capitalize;font-style:normal;font-size:60%;margin:0;display:inline}.error span.error-message{display:block}input.error,textarea.error,select.error{margin-bottom:0}label.error{color:#DF4949}meta.foundation-mq-topbar{font-family:"/only screen and (min-width: 64.063em)/";width:64.063em}.contain-to-grid{width:100%;background:#BA4A00}.contain-to-grid .top-bar{margin-bottom:0}.fixed{width:100%;left:0;position:fixed;top:0;z-index:99}.fixed.expanded:not(.top-bar){overflow-y:auto;height:auto;width:100%;max-height:100%}.fixed.expanded:not(.top-bar) .title-area{position:fixed;width:100%;z-index:99}.fixed.expanded:not(.top-bar) .top-bar-section{z-index:98;margin-top:3.125rem}.top-bar{overflow:hidden;height:3.125rem;line-height:3.125rem;position:relative;background:#BA4A00;margin-bottom:0}.top-bar ul{margin-bottom:0;list-style:none}.top-bar .row{max-width:none}.top-bar form,.top-bar input{margin-bottom:0}.top-bar input{height:1.75rem;padding-top:.35rem;padding-bottom:.35rem;font-size:.75rem}.top-bar .button,.top-bar button{padding-top:.4125rem;padding-bottom:.4125rem;margin-bottom:0;font-size:.75rem}@media only screen and (max-width: 40em){.top-bar .button,.top-bar button{position:relative;top:-1px}}.top-bar .title-area{position:relative;margin:0}.top-bar .name{height:3.125rem;margin:0;font-size:16px}.top-bar .name h1,.top-bar .name h2,.top-bar .name h3,.top-bar .name h4,.top-bar .name p,.top-bar .name span{line-height:3.125rem;font-size:1.1875rem;margin:0}.top-bar .name h1 a,.top-bar .name h2 a,.top-bar .name h3 a,.top-bar .name h4 a,.top-bar .name p a,.top-bar .name span a{font-weight:bold;color:#fff;width:75%;display:block;padding:0 1.0416666667rem}.top-bar .toggle-topbar{position:absolute;right:0;top:0}.top-bar .toggle-topbar a{color:#fff;text-transform:uppercase;font-size:.8125rem;font-weight:bold;position:relative;display:block;padding:0 1.0416666667rem;height:3.125rem;line-height:3.125rem}.top-bar .toggle-topbar.menu-icon{top:50%;margin-top:-16px}.top-bar .toggle-topbar.menu-icon a{height:34px;line-height:33px;padding:0 2.6041666667rem 0 1.0416666667rem;color:#fff;position:relative}.top-bar .toggle-topbar.menu-icon a span::after{content:"";position:absolute;display:block;height:0;top:50%;margin-top:-8px;right:1.0416666667rem;box-shadow:0 0 0 1px #fff,0 7px 0 1px #fff,0 14px 0 1px #fff;width:16px}.top-bar .toggle-topbar.menu-icon a span:hover:after{box-shadow:0 0 0 1px "",0 7px 0 1px "",0 14px 0 1px ""}.top-bar.expanded{height:auto;background:transparent}.top-bar.expanded .title-area{background:#BA4A00}.top-bar.expanded .toggle-topbar a{color:#BA4A00}.top-bar.expanded .toggle-topbar a span::after{box-shadow:0 0 0 1px #fff,0 7px 0 1px #fff,0 14px 0 1px #fff}.top-bar-section{left:0;position:relative;width:auto;transition:left 300ms ease-out}.top-bar-section ul{padding:0;width:100%;height:auto;display:block;font-size:16px;margin:0}.top-bar-section .divider,.top-bar-section [role="separator"]{border-top:solid 0px #5d2500;clear:both;height:1px;width:100%}.top-bar-section ul li{background:#F39C12}.top-bar-section ul li>a{display:block;width:100%;color:#fff;padding:12px 0 12px 0;padding-left:1.0416666667rem;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:.9375rem;font-weight:normal;text-transform:uppercase}.top-bar-section ul li>a.button{font-size:.9375rem;padding-right:1.0416666667rem;padding-left:1.0416666667rem;background-color:#BA4A00;border-color:#953b00;color:#fff}.top-bar-section ul li>a.button:hover,.top-bar-section ul li>a.button:focus{background-color:#953b00}.top-bar-section ul li>a.button:hover,.top-bar-section ul li>a.button:focus{color:#fff}.top-bar-section ul li>a.button.secondary{background-color:#FDEBD0;border-color:#f9c578;color:#333}.top-bar-section ul li>a.button.secondary:hover,.top-bar-section ul li>a.button.secondary:focus{background-color:#f9c578}.top-bar-section ul li>a.button.secondary:hover,.top-bar-section ul li>a.button.secondary:focus{color:#333}.top-bar-section ul li>a.button.success{background-color:#A1D044;border-color:#84b02c;color:#fff}.top-bar-section ul li>a.button.success:hover,.top-bar-section ul li>a.button.success:focus{background-color:#84b02c}.top-bar-section ul li>a.button.success:hover,.top-bar-section ul li>a.button.success:focus{color:#fff}.top-bar-section ul li>a.button.alert{background-color:#DF4949;border-color:#c92323;color:#fff}.top-bar-section ul li>a.button.alert:hover,.top-bar-section ul li>a.button.alert:focus{background-color:#c92323}.top-bar-section ul li>a.button.alert:hover,.top-bar-section ul li>a.button.alert:focus{color:#fff}.top-bar-section ul li>a.button.warning{background-color:#E27A3F;border-color:#c95c1e;color:#fff}.top-bar-section ul li>a.button.warning:hover,.top-bar-section ul li>a.button.warning:focus{background-color:#c95c1e}.top-bar-section ul li>a.button.warning:hover,.top-bar-section ul li>a.button.warning:focus{color:#fff}.top-bar-section ul li>button{font-size:.9375rem;padding-right:1.0416666667rem;padding-left:1.0416666667rem;background-color:#BA4A00;border-color:#953b00;color:#fff}.top-bar-section ul li>button:hover,.top-bar-section ul li>button:focus{background-color:#953b00}.top-bar-section ul li>button:hover,.top-bar-section ul li>button:focus{color:#fff}.top-bar-section ul li>button.secondary{background-color:#FDEBD0;border-color:#f9c578;color:#333}.top-bar-section ul li>button.secondary:hover,.top-bar-section ul li>button.secondary:focus{background-color:#f9c578}.top-bar-section ul li>button.secondary:hover,.top-bar-section ul li>button.secondary:focus{color:#333}.top-bar-section ul li>button.success{background-color:#A1D044;border-color:#84b02c;color:#fff}.top-bar-section ul li>button.success:hover,.top-bar-section ul li>button.success:focus{background-color:#84b02c}.top-bar-section ul li>button.success:hover,.top-bar-section ul li>button.success:focus{color:#fff}.top-bar-section ul li>button.alert{background-color:#DF4949;border-color:#c92323;color:#fff}.top-bar-section ul li>button.alert:hover,.top-bar-section ul li>button.alert:focus{background-color:#c92323}.top-bar-section ul li>button.alert:hover,.top-bar-section ul li>button.alert:focus{color:#fff}.top-bar-section ul li>button.warning{background-color:#E27A3F;border-color:#c95c1e;color:#fff}.top-bar-section ul li>button.warning:hover,.top-bar-section ul li>button.warning:focus{background-color:#c95c1e}.top-bar-section ul li>button.warning:hover,.top-bar-section ul li>button.warning:focus{color:#fff}.top-bar-section ul li:hover:not(.has-form)>a{background-color:#555;background:#F39C12;color:#fff}.top-bar-section ul li.active>a{background:#FDEBD0;color:#171717}.top-bar-section ul li.active>a:hover{background:#F39C12;color:#171717}.top-bar-section .has-form{padding:1.0416666667rem}.top-bar-section .has-dropdown{position:relative}.top-bar-section .has-dropdown>a:after{content:"";display:block;width:0;height:0;border:inset 5px;border-color:transparent transparent transparent rgba(255,255,255,0.9);border-left-style:solid;margin-right:1.0416666667rem;margin-top:-4.5px;position:absolute;top:50%;right:0}.top-bar-section .has-dropdown.moved{position:static}.top-bar-section .has-dropdown.moved>.dropdown{display:block;position:static !important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute !important;width:100%}.top-bar-section .has-dropdown.moved>a:after{display:none}.top-bar-section .dropdown{padding:0;position:absolute;left:100%;top:0;z-index:99;display:block;position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}.top-bar-section .dropdown li{width:100%;height:auto}.top-bar-section .dropdown li a{font-weight:normal;padding:8px 1.0416666667rem}.top-bar-section .dropdown li a.parent-link{font-weight:normal}.top-bar-section .dropdown li.title h5,.top-bar-section .dropdown li.parent-link{margin-bottom:0;margin-top:0;font-size:1.125rem}.top-bar-section .dropdown li.title h5 a,.top-bar-section .dropdown li.parent-link a{color:#fff;display:block}.top-bar-section .dropdown li.title h5 a:hover,.top-bar-section .dropdown li.parent-link a:hover{background:none}.top-bar-section .dropdown li.has-form{padding:8px 1.0416666667rem}.top-bar-section .dropdown li .button,.top-bar-section .dropdown li button{top:auto}.top-bar-section .dropdown label{padding:8px 1.0416666667rem 2px;margin-bottom:0;text-transform:uppercase;color:#BA4A00;font-weight:bold;font-size:.625rem}.js-generated{display:block}@media only screen and (min-width: 64.063em){.top-bar{background:#BA4A00;overflow:visible}.top-bar:before,.top-bar:after{content:" ";display:table}.top-bar:after{clear:both}.top-bar .toggle-topbar{display:none}.top-bar .title-area{float:left}.top-bar .name h1 a{width:auto}.top-bar input,.top-bar .button,.top-bar button{font-size:.875rem;position:relative;height:1.75rem;top:.6875rem}.top-bar.expanded{background:#BA4A00}.contain-to-grid .top-bar{max-width:62.5rem;margin:0 auto;margin-bottom:0}.top-bar-section{transition:none 0 0;left:0 !important}.top-bar-section ul{width:auto;height:auto !important;display:inline}.top-bar-section ul li{float:left}.top-bar-section ul li .js-generated{display:none}.top-bar-section li.hover>a:not(.button){background-color:#555;background:#F39C12;color:#fff}.top-bar-section li:not(.has-form) a:not(.button){padding:0 1.0416666667rem;line-height:3.125rem;background:#BA4A00}.top-bar-section li:not(.has-form) a:not(.button):hover{background-color:#555;background:#F39C12}.top-bar-section li.active:not(.has-form) a:not(.button){padding:0 1.0416666667rem;line-height:3.125rem;color:#171717;background:#FDEBD0}.top-bar-section li.active:not(.has-form) a:not(.button):hover{background:#F39C12;color:#171717}.top-bar-section .has-dropdown>a{padding-right:2.2916666667rem !important}.top-bar-section .has-dropdown>a:after{content:"";display:block;width:0;height:0;border:inset 5px;border-color:rgba(255,255,255,0.9) transparent transparent transparent;border-top-style:solid;margin-top:-2.5px;top:1.5625rem}.top-bar-section .has-dropdown.moved{position:relative}.top-bar-section .has-dropdown.moved>.dropdown{display:block;position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}.top-bar-section .has-dropdown.hover>.dropdown,.top-bar-section .has-dropdown.not-click:hover>.dropdown{display:block;position:static !important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute !important}.top-bar-section .has-dropdown>a:focus+.dropdown{display:block;position:static !important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute !important}.top-bar-section .has-dropdown .dropdown li.has-dropdown>a:after{border:none;content:"\00bb";top:1rem;margin-top:-1px;right:5px;line-height:1.2}.top-bar-section .dropdown{left:0;top:auto;background:transparent;min-width:100%}.top-bar-section .dropdown li a{color:#fff;line-height:3.125rem;white-space:nowrap;padding:12px 1.0416666667rem;background:#BA4A00}.top-bar-section .dropdown li:not(.has-form):not(.active)>a:not(.button){color:#fff;background:#BA4A00}.top-bar-section .dropdown li:not(.has-form):not(.active):hover>a:not(.button){color:#fff;background-color:#555;background:#F39C12}.top-bar-section .dropdown li label{white-space:nowrap;background:#333}.top-bar-section .dropdown li .dropdown{left:100%;top:0}.top-bar-section>ul>.divider,.top-bar-section>ul>[role="separator"]{border-bottom:none;border-top:none;border-right:solid 0px #ff6906;clear:none;height:3.125rem;width:0}.top-bar-section .has-form{background:#BA4A00;padding:0 1.0416666667rem;height:3.125rem}.top-bar-section .right li .dropdown{left:auto;right:0}.top-bar-section .right li .dropdown li .dropdown{right:100%}.top-bar-section .left li .dropdown{right:auto;left:0}.top-bar-section .left li .dropdown li .dropdown{left:100%}.no-js .top-bar-section ul li:hover>a{background-color:#555;background:#F39C12;color:#fff}.no-js .top-bar-section ul li:active>a{background:#FDEBD0;color:#171717}.no-js .top-bar-section .has-dropdown:hover>.dropdown{display:block;position:static !important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute !important}.no-js .top-bar-section .has-dropdown>a:focus+.dropdown{display:block;position:static !important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute !important}}.accordion{margin-bottom:0}.accordion:before,.accordion:after{content:" ";display:table}.accordion:after{clear:both}.accordion .accordion-navigation,.accordion dd{display:block;margin-bottom:0 !important}.accordion .accordion-navigation.active>a,.accordion dd.active>a{background:#e8e8e8}.accordion .accordion-navigation>a,.accordion dd>a{background:#EFEFEF;color:#222;padding:.75rem;display:block;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:1rem}.accordion .accordion-navigation>a:hover,.accordion dd>a:hover{background:#e3e3e3}.accordion .accordion-navigation>.content,.accordion dd>.content{display:none;padding:.9375rem}.accordion .accordion-navigation>.content.active,.accordion dd>.content.active{display:block;background:#fdfdfd}.alert-box{border-style:solid;border-width:1px;display:block;font-weight:normal;margin-bottom:1.25rem;position:relative;padding:.875rem 1.5rem .875rem .875rem;font-size:.9375rem;transition:opacity 300ms ease-out;background-color:#BA4A00;border-color:#a04000;color:#fff}.alert-box .close{font-size:1.375rem;padding:9px 6px 4px;line-height:0;position:absolute;top:50%;margin-top:-0.6875rem;right:.25rem;color:#333;opacity:.3;background:inherit}.alert-box .close:hover,.alert-box .close:focus{opacity:.5}.alert-box.radius{border-radius:3px}.alert-box.round{border-radius:1000px}.alert-box.success{background-color:#A1D044;border-color:#8ebe30;color:#fff}.alert-box.alert{background-color:#DF4949;border-color:#d82626;color:#fff}.alert-box.secondary{background-color:#FDEBD0;border-color:#fad192;color:#965d06}.alert-box.warning{background-color:#E27A3F;border-color:#d86321;color:#fff}.alert-box.info{background-color:#334D5C;border-color:#2c424f;color:#fff}.alert-box.alert-close{opacity:0}.breadcrumbs{display:block;padding:.5625rem .875rem .5625rem;overflow:hidden;margin-left:0;list-style:none;border-style:solid;border-width:0;background-color:#E4E4E4;border-color:#E4E4E4;border-radius:0}.breadcrumbs>*{margin:0;float:left;font-size:.6875rem;line-height:.6875rem;text-transform:uppercase;color:#BA4A00}.breadcrumbs>*:hover a,.breadcrumbs>*:focus a{text-decoration:underline}.breadcrumbs>* a{color:#BA4A00}.breadcrumbs>*.current{cursor:default;color:#333}.breadcrumbs>*.current a{cursor:default;color:#333}.breadcrumbs>*.current:hover,.breadcrumbs>*.current:hover a,.breadcrumbs>*.current:focus,.breadcrumbs>*.current:focus a{text-decoration:none}.breadcrumbs>*.unavailable{color:#999}.breadcrumbs>*.unavailable a{color:#999}.breadcrumbs>*.unavailable:hover,.breadcrumbs>*.unavailable:hover a,.breadcrumbs>*.unavailable:focus,.breadcrumbs>*.unavailable a:focus{text-decoration:none;color:#999;cursor:default}.breadcrumbs>*:before{content:"/";color:#aaa;margin:0 .75rem;position:relative;top:1px}.breadcrumbs>*:first-child:before{content:" ";margin:0}[aria-label="breadcrumbs"] [aria-hidden="true"]:after{content:"/"}[class*="block-grid-"]{display:block;padding:0;margin:0 -.625rem}[class*="block-grid-"]:before,[class*="block-grid-"]:after{content:" ";display:table}[class*="block-grid-"]:after{clear:both}[class*="block-grid-"]>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}@media only screen{.small-block-grid-1>li{width:100%;list-style:none}.small-block-grid-1>li:nth-of-type(1n){clear:none}.small-block-grid-1>li:nth-of-type(1n+1){clear:both}.small-block-grid-2>li{width:50%;list-style:none}.small-block-grid-2>li:nth-of-type(1n){clear:none}.small-block-grid-2>li:nth-of-type(2n+1){clear:both}.small-block-grid-3>li{width:33.3333333333%;list-style:none}.small-block-grid-3>li:nth-of-type(1n){clear:none}.small-block-grid-3>li:nth-of-type(3n+1){clear:both}.small-block-grid-4>li{width:25%;list-style:none}.small-block-grid-4>li:nth-of-type(1n){clear:none}.small-block-grid-4>li:nth-of-type(4n+1){clear:both}.small-block-grid-5>li{width:20%;list-style:none}.small-block-grid-5>li:nth-of-type(1n){clear:none}.small-block-grid-5>li:nth-of-type(5n+1){clear:both}.small-block-grid-6>li{width:16.6666666667%;list-style:none}.small-block-grid-6>li:nth-of-type(1n){clear:none}.small-block-grid-6>li:nth-of-type(6n+1){clear:both}.small-block-grid-7>li{width:14.2857142857%;list-style:none}.small-block-grid-7>li:nth-of-type(1n){clear:none}.small-block-grid-7>li:nth-of-type(7n+1){clear:both}.small-block-grid-8>li{width:12.5%;list-style:none}.small-block-grid-8>li:nth-of-type(1n){clear:none}.small-block-grid-8>li:nth-of-type(8n+1){clear:both}.small-block-grid-9>li{width:11.1111111111%;list-style:none}.small-block-grid-9>li:nth-of-type(1n){clear:none}.small-block-grid-9>li:nth-of-type(9n+1){clear:both}.small-block-grid-10>li{width:10%;list-style:none}.small-block-grid-10>li:nth-of-type(1n){clear:none}.small-block-grid-10>li:nth-of-type(10n+1){clear:both}.small-block-grid-11>li{width:9.0909090909%;list-style:none}.small-block-grid-11>li:nth-of-type(1n){clear:none}.small-block-grid-11>li:nth-of-type(11n+1){clear:both}.small-block-grid-12>li{width:8.3333333333%;list-style:none}.small-block-grid-12>li:nth-of-type(1n){clear:none}.small-block-grid-12>li:nth-of-type(12n+1){clear:both}}@media only screen and (min-width: 40.063em){.medium-block-grid-1>li{width:100%;list-style:none}.medium-block-grid-1>li:nth-of-type(1n){clear:none}.medium-block-grid-1>li:nth-of-type(1n+1){clear:both}.medium-block-grid-2>li{width:50%;list-style:none}.medium-block-grid-2>li:nth-of-type(1n){clear:none}.medium-block-grid-2>li:nth-of-type(2n+1){clear:both}.medium-block-grid-3>li{width:33.3333333333%;list-style:none}.medium-block-grid-3>li:nth-of-type(1n){clear:none}.medium-block-grid-3>li:nth-of-type(3n+1){clear:both}.medium-block-grid-4>li{width:25%;list-style:none}.medium-block-grid-4>li:nth-of-type(1n){clear:none}.medium-block-grid-4>li:nth-of-type(4n+1){clear:both}.medium-block-grid-5>li{width:20%;list-style:none}.medium-block-grid-5>li:nth-of-type(1n){clear:none}.medium-block-grid-5>li:nth-of-type(5n+1){clear:both}.medium-block-grid-6>li{width:16.6666666667%;list-style:none}.medium-block-grid-6>li:nth-of-type(1n){clear:none}.medium-block-grid-6>li:nth-of-type(6n+1){clear:both}.medium-block-grid-7>li{width:14.2857142857%;list-style:none}.medium-block-grid-7>li:nth-of-type(1n){clear:none}.medium-block-grid-7>li:nth-of-type(7n+1){clear:both}.medium-block-grid-8>li{width:12.5%;list-style:none}.medium-block-grid-8>li:nth-of-type(1n){clear:none}.medium-block-grid-8>li:nth-of-type(8n+1){clear:both}.medium-block-grid-9>li{width:11.1111111111%;list-style:none}.medium-block-grid-9>li:nth-of-type(1n){clear:none}.medium-block-grid-9>li:nth-of-type(9n+1){clear:both}.medium-block-grid-10>li{width:10%;list-style:none}.medium-block-grid-10>li:nth-of-type(1n){clear:none}.medium-block-grid-10>li:nth-of-type(10n+1){clear:both}.medium-block-grid-11>li{width:9.0909090909%;list-style:none}.medium-block-grid-11>li:nth-of-type(1n){clear:none}.medium-block-grid-11>li:nth-of-type(11n+1){clear:both}.medium-block-grid-12>li{width:8.3333333333%;list-style:none}.medium-block-grid-12>li:nth-of-type(1n){clear:none}.medium-block-grid-12>li:nth-of-type(12n+1){clear:both}}@media only screen and (min-width: 64.063em){.large-block-grid-1>li{width:100%;list-style:none}.large-block-grid-1>li:nth-of-type(1n){clear:none}.large-block-grid-1>li:nth-of-type(1n+1){clear:both}.large-block-grid-2>li{width:50%;list-style:none}.large-block-grid-2>li:nth-of-type(1n){clear:none}.large-block-grid-2>li:nth-of-type(2n+1){clear:both}.large-block-grid-3>li{width:33.3333333333%;list-style:none}.large-block-grid-3>li:nth-of-type(1n){clear:none}.large-block-grid-3>li:nth-of-type(3n+1){clear:both}.large-block-grid-4>li{width:25%;list-style:none}.large-block-grid-4>li:nth-of-type(1n){clear:none}.large-block-grid-4>li:nth-of-type(4n+1){clear:both}.large-block-grid-5>li{width:20%;list-style:none}.large-block-grid-5>li:nth-of-type(1n){clear:none}.large-block-grid-5>li:nth-of-type(5n+1){clear:both}.large-block-grid-6>li{width:16.6666666667%;list-style:none}.large-block-grid-6>li:nth-of-type(1n){clear:none}.large-block-grid-6>li:nth-of-type(6n+1){clear:both}.large-block-grid-7>li{width:14.2857142857%;list-style:none}.large-block-grid-7>li:nth-of-type(1n){clear:none}.large-block-grid-7>li:nth-of-type(7n+1){clear:both}.large-block-grid-8>li{width:12.5%;list-style:none}.large-block-grid-8>li:nth-of-type(1n){clear:none}.large-block-grid-8>li:nth-of-type(8n+1){clear:both}.large-block-grid-9>li{width:11.1111111111%;list-style:none}.large-block-grid-9>li:nth-of-type(1n){clear:none}.large-block-grid-9>li:nth-of-type(9n+1){clear:both}.large-block-grid-10>li{width:10%;list-style:none}.large-block-grid-10>li:nth-of-type(1n){clear:none}.large-block-grid-10>li:nth-of-type(10n+1){clear:both}.large-block-grid-11>li{width:9.0909090909%;list-style:none}.large-block-grid-11>li:nth-of-type(1n){clear:none}.large-block-grid-11>li:nth-of-type(11n+1){clear:both}.large-block-grid-12>li{width:8.3333333333%;list-style:none}.large-block-grid-12>li:nth-of-type(1n){clear:none}.large-block-grid-12>li:nth-of-type(12n+1){clear:both}}.button-group{list-style:none;margin:0;left:0}.button-group:before,.button-group:after{content:" ";display:table}.button-group:after{clear:both}.button-group>li{margin:0 -2px;display:inline-block}.button-group>li>button,.button-group>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group>li:first-child button,.button-group>li:first-child .button{border-left:0}.button-group.stack>li{margin:0 -2px;display:inline-block;display:block;margin:0;float:none}.button-group.stack>li>button,.button-group.stack>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.stack>li:first-child button,.button-group.stack>li:first-child .button{border-left:0}.button-group.stack>li>button,.button-group.stack>li .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.stack>li:first-child button,.button-group.stack>li:first-child .button{border-top:0}.button-group.stack-for-small>li{margin:0 -2px;display:inline-block}.button-group.stack-for-small>li>button,.button-group.stack-for-small>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.stack-for-small>li:first-child button,.button-group.stack-for-small>li:first-child .button{border-left:0}@media only screen and (max-width: 40em){.button-group.stack-for-small>li{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.stack-for-small>li>button,.button-group.stack-for-small>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.stack-for-small>li:first-child button,.button-group.stack-for-small>li:first-child .button{border-left:0}.button-group.stack-for-small>li>button,.button-group.stack-for-small>li .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.stack-for-small>li:first-child button,.button-group.stack-for-small>li:first-child .button{border-top:0}}.button-group.radius>*{margin:0 -2px;display:inline-block}.button-group.radius>*>button,.button-group.radius>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius>*:first-child button,.button-group.radius>*:first-child .button{border-left:0}.button-group.radius>*,.button-group.radius>*>a,.button-group.radius>*>button,.button-group.radius>*>.button{border-radius:0}.button-group.radius>*:first-child,.button-group.radius>*:first-child>a,.button-group.radius>*:first-child>button,.button-group.radius>*:first-child>.button{-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius>*:last-child,.button-group.radius>*:last-child>a,.button-group.radius>*:last-child>button,.button-group.radius>*:last-child>.button{-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}.button-group.radius.stack>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.radius.stack>*>button,.button-group.radius.stack>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius.stack>*:first-child button,.button-group.radius.stack>*:first-child .button{border-left:0}.button-group.radius.stack>*>button,.button-group.radius.stack>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.radius.stack>*:first-child button,.button-group.radius.stack>*:first-child .button{border-top:0}.button-group.radius.stack>*,.button-group.radius.stack>*>a,.button-group.radius.stack>*>button,.button-group.radius.stack>*>.button{border-radius:0}.button-group.radius.stack>*:first-child,.button-group.radius.stack>*:first-child>a,.button-group.radius.stack>*:first-child>button,.button-group.radius.stack>*:first-child>.button{-webkit-top-left-radius:3px;-webkit-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.button-group.radius.stack>*:last-child,.button-group.radius.stack>*:last-child>a,.button-group.radius.stack>*:last-child>button,.button-group.radius.stack>*:last-child>.button{-webkit-bottom-left-radius:3px;-webkit-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}@media only screen and (min-width: 40.063em){.button-group.radius.stack-for-small>*{margin:0 -2px;display:inline-block}.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius.stack-for-small>*:first-child button,.button-group.radius.stack-for-small>*:first-child .button{border-left:0}.button-group.radius.stack-for-small>*,.button-group.radius.stack-for-small>*>a,.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>*>.button{border-radius:0}.button-group.radius.stack-for-small>*:first-child,.button-group.radius.stack-for-small>*:first-child>a,.button-group.radius.stack-for-small>*:first-child>button,.button-group.radius.stack-for-small>*:first-child>.button{-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius.stack-for-small>*:last-child,.button-group.radius.stack-for-small>*:last-child>a,.button-group.radius.stack-for-small>*:last-child>button,.button-group.radius.stack-for-small>*:last-child>.button{-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}}@media only screen and (max-width: 40em){.button-group.radius.stack-for-small>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius.stack-for-small>*:first-child button,.button-group.radius.stack-for-small>*:first-child .button{border-left:0}.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.radius.stack-for-small>*:first-child button,.button-group.radius.stack-for-small>*:first-child .button{border-top:0}.button-group.radius.stack-for-small>*,.button-group.radius.stack-for-small>*>a,.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>*>.button{border-radius:0}.button-group.radius.stack-for-small>*:first-child,.button-group.radius.stack-for-small>*:first-child>a,.button-group.radius.stack-for-small>*:first-child>button,.button-group.radius.stack-for-small>*:first-child>.button{-webkit-top-left-radius:3px;-webkit-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.button-group.radius.stack-for-small>*:last-child,.button-group.radius.stack-for-small>*:last-child>a,.button-group.radius.stack-for-small>*:last-child>button,.button-group.radius.stack-for-small>*:last-child>.button{-webkit-bottom-left-radius:3px;-webkit-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}}.button-group.round>*{margin:0 -2px;display:inline-block}.button-group.round>*>button,.button-group.round>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round>*:first-child button,.button-group.round>*:first-child .button{border-left:0}.button-group.round>*,.button-group.round>*>a,.button-group.round>*>button,.button-group.round>*>.button{border-radius:0}.button-group.round>*:first-child,.button-group.round>*:first-child>a,.button-group.round>*:first-child>button,.button-group.round>*:first-child>.button{-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.button-group.round>*:last-child,.button-group.round>*:last-child>a,.button-group.round>*:last-child>button,.button-group.round>*:last-child>.button{-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}.button-group.round.stack>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.round.stack>*>button,.button-group.round.stack>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round.stack>*:first-child button,.button-group.round.stack>*:first-child .button{border-left:0}.button-group.round.stack>*>button,.button-group.round.stack>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.round.stack>*:first-child button,.button-group.round.stack>*:first-child .button{border-top:0}.button-group.round.stack>*,.button-group.round.stack>*>a,.button-group.round.stack>*>button,.button-group.round.stack>*>.button{border-radius:0}.button-group.round.stack>*:first-child,.button-group.round.stack>*:first-child>a,.button-group.round.stack>*:first-child>button,.button-group.round.stack>*:first-child>.button{-webkit-top-left-radius:1rem;-webkit-top-right-radius:1rem;border-top-left-radius:1rem;border-top-right-radius:1rem}.button-group.round.stack>*:last-child,.button-group.round.stack>*:last-child>a,.button-group.round.stack>*:last-child>button,.button-group.round.stack>*:last-child>.button{-webkit-bottom-left-radius:1rem;-webkit-bottom-right-radius:1rem;border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}@media only screen and (min-width: 40.063em){.button-group.round.stack-for-small>*{margin:0 -2px;display:inline-block}.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round.stack-for-small>*:first-child button,.button-group.round.stack-for-small>*:first-child .button{border-left:0}.button-group.round.stack-for-small>*,.button-group.round.stack-for-small>*>a,.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>*>.button{border-radius:0}.button-group.round.stack-for-small>*:first-child,.button-group.round.stack-for-small>*:first-child>a,.button-group.round.stack-for-small>*:first-child>button,.button-group.round.stack-for-small>*:first-child>.button{-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.button-group.round.stack-for-small>*:last-child,.button-group.round.stack-for-small>*:last-child>a,.button-group.round.stack-for-small>*:last-child>button,.button-group.round.stack-for-small>*:last-child>.button{-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}}@media only screen and (max-width: 40em){.button-group.round.stack-for-small>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round.stack-for-small>*:first-child button,.button-group.round.stack-for-small>*:first-child .button{border-left:0}.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.round.stack-for-small>*:first-child button,.button-group.round.stack-for-small>*:first-child .button{border-top:0}.button-group.round.stack-for-small>*,.button-group.round.stack-for-small>*>a,.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>*>.button{border-radius:0}.button-group.round.stack-for-small>*:first-child,.button-group.round.stack-for-small>*:first-child>a,.button-group.round.stack-for-small>*:first-child>button,.button-group.round.stack-for-small>*:first-child>.button{-webkit-top-left-radius:1rem;-webkit-top-right-radius:1rem;border-top-left-radius:1rem;border-top-right-radius:1rem}.button-group.round.stack-for-small>*:last-child,.button-group.round.stack-for-small>*:last-child>a,.button-group.round.stack-for-small>*:last-child>button,.button-group.round.stack-for-small>*:last-child>.button{-webkit-bottom-left-radius:1rem;-webkit-bottom-right-radius:1rem;border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}}.button-group.even-2 li{margin:0 -2px;display:inline-block;width:50%}.button-group.even-2 li>button,.button-group.even-2 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-2 li:first-child button,.button-group.even-2 li:first-child .button{border-left:0}.button-group.even-2 li button,.button-group.even-2 li .button{width:100%}.button-group.even-3 li{margin:0 -2px;display:inline-block;width:33.3333333333%}.button-group.even-3 li>button,.button-group.even-3 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-3 li:first-child button,.button-group.even-3 li:first-child .button{border-left:0}.button-group.even-3 li button,.button-group.even-3 li .button{width:100%}.button-group.even-4 li{margin:0 -2px;display:inline-block;width:25%}.button-group.even-4 li>button,.button-group.even-4 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-4 li:first-child button,.button-group.even-4 li:first-child .button{border-left:0}.button-group.even-4 li button,.button-group.even-4 li .button{width:100%}.button-group.even-5 li{margin:0 -2px;display:inline-block;width:20%}.button-group.even-5 li>button,.button-group.even-5 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-5 li:first-child button,.button-group.even-5 li:first-child .button{border-left:0}.button-group.even-5 li button,.button-group.even-5 li .button{width:100%}.button-group.even-6 li{margin:0 -2px;display:inline-block;width:16.6666666667%}.button-group.even-6 li>button,.button-group.even-6 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-6 li:first-child button,.button-group.even-6 li:first-child .button{border-left:0}.button-group.even-6 li button,.button-group.even-6 li .button{width:100%}.button-group.even-7 li{margin:0 -2px;display:inline-block;width:14.2857142857%}.button-group.even-7 li>button,.button-group.even-7 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-7 li:first-child button,.button-group.even-7 li:first-child .button{border-left:0}.button-group.even-7 li button,.button-group.even-7 li .button{width:100%}.button-group.even-8 li{margin:0 -2px;display:inline-block;width:12.5%}.button-group.even-8 li>button,.button-group.even-8 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-8 li:first-child button,.button-group.even-8 li:first-child .button{border-left:0}.button-group.even-8 li button,.button-group.even-8 li .button{width:100%}.button-bar:before,.button-bar:after{content:" ";display:table}.button-bar:after{clear:both}.button-bar .button-group{float:left;margin-right:.625rem}.button-bar .button-group div{overflow:hidden}.clearing-thumbs,[data-clearing]{margin-bottom:0;margin-left:0;list-style:none}.clearing-thumbs:before,.clearing-thumbs:after,[data-clearing]:before,[data-clearing]:after{content:" ";display:table}.clearing-thumbs:after,[data-clearing]:after{clear:both}.clearing-thumbs li,[data-clearing] li{float:left;margin-right:10px}.clearing-thumbs[class*="block-grid-"] li,[data-clearing][class*="block-grid-"] li{margin-right:0}.clearing-blackout{background:#333;position:fixed;width:100%;height:100%;top:0;left:0;z-index:998}.clearing-blackout .clearing-close{display:block}.clearing-container{position:relative;z-index:998;height:100%;overflow:hidden;margin:0}.clearing-touch-label{position:absolute;top:50%;left:50%;color:#aaa;font-size:0.6em}.visible-img{height:95%;position:relative}.visible-img img{position:absolute;left:50%;top:50%;margin-left:-50%;max-height:100%;max-width:100%}.clearing-caption{color:#ccc;font-size:.875em;line-height:1.3;margin-bottom:0;text-align:center;bottom:0;background:#333;width:100%;padding:10px 30px 20px;position:absolute;left:0}.clearing-close{z-index:999;padding-left:20px;padding-top:10px;font-size:30px;line-height:1;color:#ccc;display:none}.clearing-close:hover,.clearing-close:focus{color:#ccc}.clearing-assembled .clearing-container{height:100%}.clearing-assembled .clearing-container .carousel>ul{display:none}.clearing-feature li{display:none}.clearing-feature li.clearing-featured-img{display:block}@media only screen and (min-width: 40.063em){.clearing-main-prev,.clearing-main-next{position:absolute;height:100%;width:40px;top:0}.clearing-main-prev>span,.clearing-main-next>span{position:absolute;top:50%;display:block;width:0;height:0;border:solid 12px}.clearing-main-prev>span:hover,.clearing-main-next>span:hover{opacity:0.8}.clearing-main-prev{left:0}.clearing-main-prev>span{left:5px;border-color:transparent;border-right-color:#ccc}.clearing-main-next{right:0}.clearing-main-next>span{border-color:transparent;border-left-color:#ccc}.clearing-main-prev.disabled,.clearing-main-next.disabled{opacity:0.3}.clearing-assembled .clearing-container .carousel{background:rgba(51,51,51,0.8);height:120px;margin-top:10px;text-align:center}.clearing-assembled .clearing-container .carousel>ul{display:inline-block;z-index:999;height:100%;position:relative;float:none}.clearing-assembled .clearing-container .carousel>ul li{display:block;width:120px;min-height:inherit;float:left;overflow:hidden;margin-right:0;padding:0;position:relative;cursor:pointer;opacity:0.4;clear:none}.clearing-assembled .clearing-container .carousel>ul li.fix-height img{height:100%;max-width:none}.clearing-assembled .clearing-container .carousel>ul li a.th{border:none;box-shadow:none;display:block}.clearing-assembled .clearing-container .carousel>ul li img{cursor:pointer !important;width:100% !important}.clearing-assembled .clearing-container .carousel>ul li.visible{opacity:1}.clearing-assembled .clearing-container .carousel>ul li:hover{opacity:0.8}.clearing-assembled .clearing-container .visible-img{background:#333;overflow:hidden;height:85%}.clearing-close{position:absolute;top:10px;right:20px;padding-left:0;padding-top:0}}.f-dropdown{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#fff;border:solid 1px #ccc;font-size:.875rem;z-index:89;margin-top:2px;max-width:200px}.f-dropdown>*:first-child{margin-top:0}.f-dropdown>*:last-child{margin-bottom:0}.f-dropdown:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:transparent transparent #fff transparent;border-bottom-style:solid;position:absolute;top:-12px;left:10px;z-index:89}.f-dropdown:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:transparent transparent #ccc transparent;border-bottom-style:solid;position:absolute;top:-14px;left:9px;z-index:88}.f-dropdown.right:before{left:auto;right:10px}.f-dropdown.right:after{left:auto;right:9px}.f-dropdown.drop-right{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#fff;border:solid 1px #ccc;font-size:.875rem;z-index:89;margin-top:0;margin-left:2px;max-width:200px}.f-dropdown.drop-right>*:first-child{margin-top:0}.f-dropdown.drop-right>*:last-child{margin-bottom:0}.f-dropdown.drop-right:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:transparent #fff transparent transparent;border-right-style:solid;position:absolute;top:10px;left:-12px;z-index:89}.f-dropdown.drop-right:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:transparent #ccc transparent transparent;border-right-style:solid;position:absolute;top:9px;left:-14px;z-index:88}.f-dropdown.drop-left{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#fff;border:solid 1px #ccc;font-size:.875rem;z-index:89;margin-top:0;margin-left:-2px;max-width:200px}.f-dropdown.drop-left>*:first-child{margin-top:0}.f-dropdown.drop-left>*:last-child{margin-bottom:0}.f-dropdown.drop-left:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:transparent transparent transparent #fff;border-left-style:solid;position:absolute;top:10px;right:-12px;left:auto;z-index:89}.f-dropdown.drop-left:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:transparent transparent transparent #ccc;border-left-style:solid;position:absolute;top:9px;right:-14px;left:auto;z-index:88}.f-dropdown.drop-top{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#fff;border:solid 1px #ccc;font-size:.875rem;z-index:89;margin-top:-2px;margin-left:0;max-width:200px}.f-dropdown.drop-top>*:first-child{margin-top:0}.f-dropdown.drop-top>*:last-child{margin-bottom:0}.f-dropdown.drop-top:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:#fff transparent transparent transparent;border-top-style:solid;position:absolute;top:auto;bottom:-12px;left:10px;right:auto;z-index:89}.f-dropdown.drop-top:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:#ccc transparent transparent transparent;border-top-style:solid;position:absolute;top:auto;bottom:-14px;left:9px;right:auto;z-index:88}.f-dropdown li{font-size:.875rem;cursor:pointer;line-height:1.125rem;margin:0}.f-dropdown li:hover,.f-dropdown li:focus{background:#eee}.f-dropdown li.radius{border-radius:3px}.f-dropdown li a{display:block;padding:.5rem;color:#555}.f-dropdown.content{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;padding:1.25rem;width:100%;height:auto;max-height:none;background:#fff;border:solid 1px #ccc;font-size:.875rem;z-index:89;max-width:200px}.f-dropdown.content>*:first-child{margin-top:0}.f-dropdown.content>*:last-child{margin-bottom:0}.f-dropdown.tiny{max-width:200px}.f-dropdown.small{max-width:300px}.f-dropdown.medium{max-width:500px}.f-dropdown.large{max-width:800px}.f-dropdown.mega{width:100% !important;max-width:100% !important}.f-dropdown.mega.open{left:0 !important}.dropdown.button,button.dropdown{position:relative;outline:none;padding-right:3.5625rem}.dropdown.button::after,button.dropdown::after{position:absolute;content:"";width:0;height:0;display:block;border-style:solid;border-color:#fff transparent transparent transparent;top:50%}.dropdown.button::after,button.dropdown::after{border-width:.375rem;right:1.40625rem;margin-top:-.15625rem}.dropdown.button::after,button.dropdown::after{border-color:#fff transparent transparent transparent}.dropdown.button.tiny,button.dropdown.tiny{padding-right:2.625rem}.dropdown.button.tiny:after,button.dropdown.tiny:after{border-width:.375rem;right:1.125rem;margin-top:-.125rem}.dropdown.button.tiny::after,button.dropdown.tiny::after{border-color:#fff transparent transparent transparent}.dropdown.button.small,button.dropdown.small{padding-right:3.0625rem}.dropdown.button.small::after,button.dropdown.small::after{border-width:.4375rem;right:1.3125rem;margin-top:-.15625rem}.dropdown.button.small::after,button.dropdown.small::after{border-color:#fff transparent transparent transparent}.dropdown.button.large,button.dropdown.large{padding-right:3.625rem}.dropdown.button.large::after,button.dropdown.large::after{border-width:.3125rem;right:1.71875rem;margin-top:-.15625rem}.dropdown.button.large::after,button.dropdown.large::after{border-color:#fff transparent transparent transparent}.dropdown.button.secondary:after,button.dropdown.secondary:after{border-color:#333 transparent transparent transparent}.flex-video{position:relative;padding-top:1.5625rem;padding-bottom:67.5%;height:0;margin-bottom:1rem;overflow:hidden}.flex-video.widescreen{padding-bottom:56.34%}.flex-video.vimeo{padding-top:0}.flex-video iframe,.flex-video object,.flex-video embed,.flex-video video{position:absolute;top:0;left:0;width:100%;height:100%}.inline-list{margin:0 auto 1.0625rem auto;margin-left:-1.375rem;margin-right:0;padding:0;list-style:none;overflow:hidden}.inline-list>li{list-style:none;float:left;margin-left:1.375rem;display:block}.inline-list>li>*{display:block}.keystroke,kbd{background-color:#ededed;border-color:#ddd;color:#222;border-style:solid;border-width:1px;margin:0;font-family:"Consolas","Menlo","Courier",monospace;font-size:inherit;padding:.125rem .25rem 0;border-radius:3px}.label{font-weight:normal;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;text-align:center;text-decoration:none;line-height:1;white-space:nowrap;display:inline-block;position:relative;margin-bottom:auto;padding:.25rem .5rem .25rem;font-size:.6875rem;background-color:#BA4A00;color:#fff}.label.radius{border-radius:3px}.label.round{border-radius:1000px}.label.alert{background-color:#DF4949;color:#fff}.label.warning{background-color:#E27A3F;color:#fff}.label.success{background-color:#A1D044;color:#fff}.label.secondary{background-color:#FDEBD0;color:#333}.label.info{background-color:#334D5C;color:#fff}.panel{border-style:solid;border-width:1px;border-color:#cbcbcb;margin-bottom:1.25rem;padding:1.25rem;background:#E4E4E4;color:#333}.panel>:first-child{margin-top:0}.panel>:last-child{margin-bottom:0}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6,.panel p,.panel li,.panel dl{color:#333}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6{line-height:1;margin-bottom:.625rem}.panel h1.subheader,.panel h2.subheader,.panel h3.subheader,.panel h4.subheader,.panel h5.subheader,.panel h6.subheader{line-height:1.4}.panel.callout{border-style:solid;border-width:1px;border-color:#ffd3b6;margin-bottom:1.25rem;padding:1.25rem;background:#fff3ec;color:#333}.panel.callout>:first-child{margin-top:0}.panel.callout>:last-child{margin-bottom:0}.panel.callout h1,.panel.callout h2,.panel.callout h3,.panel.callout h4,.panel.callout h5,.panel.callout h6,.panel.callout p,.panel.callout li,.panel.callout dl{color:#333}.panel.callout h1,.panel.callout h2,.panel.callout h3,.panel.callout h4,.panel.callout h5,.panel.callout h6{line-height:1;margin-bottom:.625rem}.panel.callout h1.subheader,.panel.callout h2.subheader,.panel.callout h3.subheader,.panel.callout h4.subheader,.panel.callout h5.subheader,.panel.callout h6.subheader{line-height:1.4}.panel.callout a:not(.button){color:#BA4A00}.panel.callout a:not(.button):hover,.panel.callout a:not(.button):focus{color:#a04000}.panel.radius{border-radius:3px}.reveal-modal-bg{position:absolute;top:0;bottom:0;left:0;right:0;background:#000;background:rgba(0,0,0,0.45);z-index:1004;display:none;left:0}.reveal-modal,dialog{visibility:hidden;display:none;position:absolute;z-index:1005;width:100vw;top:0;border-radius:3px;left:0;background-color:#fff;padding:1.25rem;border:solid 1px #666;box-shadow:0 0 10px rgba(0,0,0,0.4);padding:1.875rem}@media only screen and (max-width: 40em){.reveal-modal,dialog{min-height:100vh}}.reveal-modal .column,dialog .column,.reveal-modal .columns,dialog .columns{min-width:0}.reveal-modal>:first-child,dialog>:first-child{margin-top:0}.reveal-modal>:last-child,dialog>:last-child{margin-bottom:0}@media only screen and (min-width: 40.063em){.reveal-modal,dialog{width:80%;max-width:62.5rem;left:0;right:0;margin:0 auto}}@media only screen and (min-width: 40.063em){.reveal-modal,dialog{top:6.25rem}}.reveal-modal.radius,dialog.radius{border-radius:3px}.reveal-modal.round,dialog.round{border-radius:1000px}.reveal-modal.collapse,dialog.collapse{padding:0}@media only screen and (min-width: 40.063em){.reveal-modal.tiny,dialog.tiny{width:30%;max-width:62.5rem;left:0;right:0;margin:0 auto}}@media only screen and (min-width: 40.063em){.reveal-modal.small,dialog.small{width:40%;max-width:62.5rem;left:0;right:0;margin:0 auto}}@media only screen and (min-width: 40.063em){.reveal-modal.medium,dialog.medium{width:60%;max-width:62.5rem;left:0;right:0;margin:0 auto}}@media only screen and (min-width: 40.063em){.reveal-modal.large,dialog.large{width:70%;max-width:62.5rem;left:0;right:0;margin:0 auto}}@media only screen and (min-width: 40.063em){.reveal-modal.xlarge,dialog.xlarge{width:95%;max-width:62.5rem;left:0;right:0;margin:0 auto}}.reveal-modal.full,dialog.full{top:0;left:0;height:100%;height:100vh;min-height:100vh;max-width:none !important;margin-left:0 !important}@media only screen and (min-width: 40.063em){.reveal-modal.full,dialog.full{width:100vw;max-width:62.5rem;left:0;right:0;margin:0 auto}}.reveal-modal .close-reveal-modal,dialog .close-reveal-modal{font-size:2.5rem;line-height:1;position:absolute;top:.625rem;right:1.375rem;color:#aaa;font-weight:bold;cursor:pointer}dialog{display:none}dialog::backdrop,dialog+.backdrop{position:absolute;top:0;bottom:0;left:0;right:0;background:#000;background:rgba(0,0,0,0.45);z-index:auto;display:none;left:0}dialog[open]{display:block}@media print{dialog,.reveal-modal,dialog{display:none;background:#fff !important}}.side-nav{display:block;margin:0;padding:0 0 0 0;list-style-type:none;list-style-position:outside;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}.side-nav li{margin:0 0 0 0;font-size:1rem;font-weight:normal}.side-nav li a:not(.button){display:block;color:#BA4A00;margin:0;padding:.4375rem .875rem}.side-nav li a:not(.button):hover,.side-nav li a:not(.button):focus{background:rgba(0,0,0,0.025);color:#702c00}.side-nav li.active>a:first-child:not(.button){color:#702c00;font-weight:normal;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}.side-nav li.divider{border-top:1px solid;height:0;padding:0;list-style:none;border-top-color:#E4E4E4}.side-nav li.heading{color:#BA4A00;font-size:1rem;font-weight:bold;text-transform:uppercase}.sub-nav{display:block;width:auto;overflow:hidden;margin:-.25rem 0 1.125rem;padding-top:.25rem}.sub-nav dt{text-transform:uppercase}.sub-nav dt,.sub-nav dd,.sub-nav li{float:left;display:inline;margin-left:1rem;margin-bottom:0;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:normal;font-size:.875rem;color:#999}.sub-nav dt a,.sub-nav dd a,.sub-nav li a{text-decoration:none;color:#999;padding:.1875rem 1rem}.sub-nav dt a:hover,.sub-nav dd a:hover,.sub-nav li a:hover{color:#737373}.sub-nav dt.active a,.sub-nav dd.active a,.sub-nav li.active a{border-radius:3px;font-weight:normal;background:#BA4A00;padding:.1875rem 1rem;cursor:default;color:#fff}.sub-nav dt.active a:hover,.sub-nav dd.active a:hover,.sub-nav li.active a:hover{background:#a04000}table{background:#fff;margin-bottom:1.25rem;border:solid 1px #ddd;table-layout:auto}table caption{background:transparent;color:#222;font-size:1rem;font-weight:bold}table thead{background:#D7D7D7}table thead tr th,table thead tr td{padding:.5rem .625rem .625rem;font-size:.875rem;font-weight:bold;color:#222}table tfoot{background:#D7D7D7}table tfoot tr th,table tfoot tr td{padding:.5rem .625rem .625rem;font-size:.875rem;font-weight:bold;color:#222}table tr th,table tr td{padding:.5625rem .625rem;font-size:.875rem;color:#222;text-align:left}table tr.even,table tr.alt,table tr:nth-of-type(even){background:#E4E4E4}table thead tr th,table tfoot tr th,table tfoot tr td,table tbody tr th,table tbody tr td,table tr td{display:table-cell;line-height:1.125rem}.th{line-height:0;display:inline-block;border:solid 4px #fff;max-width:100%;box-shadow:0 0 0 1px rgba(0,0,0,0.2);transition:all 200ms ease-out}.th:hover,.th:focus{box-shadow:0 0 6px 1px rgba(186,74,0,0.5)}.th.radius{border-radius:3px}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}.text-justify{text-align:justify !important}@media only screen and (max-width: 40em){.small-only-text-left{text-align:left !important}.small-only-text-right{text-align:right !important}.small-only-text-center{text-align:center !important}.small-only-text-justify{text-align:justify !important}}@media only screen{.small-text-left{text-align:left !important}.small-text-right{text-align:right !important}.small-text-center{text-align:center !important}.small-text-justify{text-align:justify !important}}@media only screen and (min-width: 40.063em) and (max-width: 64em){.medium-only-text-left{text-align:left !important}.medium-only-text-right{text-align:right !important}.medium-only-text-center{text-align:center !important}.medium-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 40.063em){.medium-text-left{text-align:left !important}.medium-text-right{text-align:right !important}.medium-text-center{text-align:center !important}.medium-text-justify{text-align:justify !important}}@media only screen and (min-width: 64.063em) and (max-width: 90em){.large-only-text-left{text-align:left !important}.large-only-text-right{text-align:right !important}.large-only-text-center{text-align:center !important}.large-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 64.063em){.large-text-left{text-align:left !important}.large-text-right{text-align:right !important}.large-text-center{text-align:center !important}.large-text-justify{text-align:justify !important}}@media only screen and (min-width: 90.063em) and (max-width: 120em){.xlarge-only-text-left{text-align:left !important}.xlarge-only-text-right{text-align:right !important}.xlarge-only-text-center{text-align:center !important}.xlarge-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 90.063em){.xlarge-text-left{text-align:left !important}.xlarge-text-right{text-align:right !important}.xlarge-text-center{text-align:center !important}.xlarge-text-justify{text-align:justify !important}}@media only screen and (min-width: 120.063em) and (max-width: 99999999em){.xxlarge-only-text-left{text-align:left !important}.xxlarge-only-text-right{text-align:right !important}.xxlarge-only-text-center{text-align:center !important}.xxlarge-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 120.063em){.xxlarge-text-left{text-align:left !important}.xxlarge-text-right{text-align:right !important}.xxlarge-text-center{text-align:center !important}.xxlarge-text-justify{text-align:justify !important}}div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,th,td{margin:0;padding:0}a{color:#BA4A00;text-decoration:none;line-height:inherit}a:hover,a:focus{color:#a04000}a img{border:none}p{font-family:inherit;font-weight:normal;font-size:1rem;line-height:1.6;margin-bottom:1.25rem;text-rendering:optimizeLegibility}p.lead{font-size:1.21875rem;line-height:1.6}p aside{font-size:.875rem;line-height:1.35;font-style:italic}h1,h2,h3,h4,h5,h6{font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:normal;font-style:normal;color:#222;text-rendering:optimizeLegibility;margin-top:.2rem;margin-bottom:.5rem;line-height:1.4}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-size:60%;color:#6f6f6f;line-height:0}h1{font-size:2.125rem}h2{font-size:1.6875rem}h3{font-size:1.375rem}h4{font-size:1.125rem}h5{font-size:1.125rem}h6{font-size:1rem}.subheader{line-height:1.4;color:#6f6f6f;font-weight:normal;margin-top:.2rem;margin-bottom:.5rem}hr{border:solid #CBCBCB;border-width:1px 0 0;clear:both;margin:1.25rem 0 1.1875rem;height:0}em,i{font-style:italic;line-height:inherit}strong,b{font-weight:bold;line-height:inherit}small{font-size:60%;line-height:inherit}code{font-family:"Lucida Console",Monaco,monospace;font-weight:normal;color:#333;background-color:#fef9f1;border-width:1px;border-style:solid;border-color:#fce5c1;padding:.125rem .3125rem .0625rem}ul,ol,dl{font-size:1rem;line-height:1.6;margin-bottom:1.25rem;list-style-position:outside;font-family:inherit}ul{margin-left:1.3rem}ul.no-bullet{margin-left:0}ul.no-bullet li ul,ul.no-bullet li ol{margin-left:1.25rem;margin-bottom:0;list-style:none}ul li ul,ul li ol{margin-left:1.25rem;margin-bottom:0}ul.square li ul,ul.circle li ul,ul.disc li ul{list-style:inherit}ul.square{list-style-type:square;margin-left:1.3rem}ul.circle{list-style-type:circle;margin-left:1.3rem}ul.disc{list-style-type:disc;margin-left:1.3rem}ul.no-bullet{list-style:none}ol{margin-left:1.4rem}ol li ul,ol li ol{margin-left:1.25rem;margin-bottom:0}dl dt{margin-bottom:.3rem;font-weight:bold}dl dd{margin-bottom:.75rem}abbr,acronym{text-transform:uppercase;font-size:90%;color:#111;cursor:help}abbr{text-transform:none}abbr[title]{border-bottom:1px dotted #ddd}blockquote{margin:0 0 1.25rem;padding:.5625rem 1.25rem 0 1.1875rem;border-left:1px solid #ddd}blockquote cite{display:block;font-size:.8125rem;color:#555}blockquote cite:before{content:"\2014 \0020"}blockquote cite a,blockquote cite a:visited{color:#555}blockquote,blockquote p{line-height:1.6;color:#6f6f6f}.vcard{display:inline-block;margin:0 0 1.25rem 0;border:1px solid #ddd;padding:.625rem .75rem}.vcard li{margin:0;display:block}.vcard .fn{font-weight:bold;font-size:.9375rem}.vevent .summary{font-weight:bold}.vevent abbr{cursor:default;text-decoration:none;font-weight:bold;border:none;padding:0 .0625rem}@media only screen and (min-width: 40.063em){h1,h2,h3,h4,h5,h6{line-height:1.4}h1{font-size:2.75rem}h2{font-size:2.3125rem}h3{font-size:1.6875rem}h4{font-size:1.4375rem}h5{font-size:1.125rem}h6{font-size:1rem}}.print-only{display:none !important}@media print{*{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:0.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.hide-on-print{display:none !important}.print-only{display:block !important}.hide-for-print{display:none !important}.show-for-print{display:inherit !important}}@media only screen{.show-for-small-only,.show-for-small-up,.show-for-small,.show-for-small-down,.hide-for-medium-only,.hide-for-medium-up,.hide-for-medium,.show-for-medium-down,.hide-for-large-only,.hide-for-large-up,.hide-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit !important}.hide-for-small-only,.hide-for-small-up,.hide-for-small,.hide-for-small-down,.show-for-medium-only,.show-for-medium-up,.show-for-medium,.hide-for-medium-down,.show-for-large-only,.show-for-large-up,.show-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none !important}.visible-for-small-only,.visible-for-small-up,.visible-for-small,.visible-for-small-down,.hidden-for-medium-only,.hidden-for-medium-up,.hidden-for-medium,.visible-for-medium-down,.hidden-for-large-only,.hidden-for-large-up,.hidden-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.hidden-for-small-only,.hidden-for-small-up,.hidden-for-small,.hidden-for-small-down,.visible-for-medium-only,.visible-for-medium-up,.visible-for-medium,.hidden-for-medium-down,.visible-for-large-only,.visible-for-large-up,.visible-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}table.show-for-small-only,table.show-for-small-up,table.show-for-small,table.show-for-small-down,table.hide-for-medium-only,table.hide-for-medium-up,table.hide-for-medium,table.show-for-medium-down,table.hide-for-large-only,table.hide-for-large-up,table.hide-for-large,table.show-for-large-down,table.hide-for-xlarge-only,table.hide-for-xlarge-up,table.hide-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table !important}thead.show-for-small-only,thead.show-for-small-up,thead.show-for-small,thead.show-for-small-down,thead.hide-for-medium-only,thead.hide-for-medium-up,thead.hide-for-medium,thead.show-for-medium-down,thead.hide-for-large-only,thead.hide-for-large-up,thead.hide-for-large,thead.show-for-large-down,thead.hide-for-xlarge-only,thead.hide-for-xlarge-up,thead.hide-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group !important}tbody.show-for-small-only,tbody.show-for-small-up,tbody.show-for-small,tbody.show-for-small-down,tbody.hide-for-medium-only,tbody.hide-for-medium-up,tbody.hide-for-medium,tbody.show-for-medium-down,tbody.hide-for-large-only,tbody.hide-for-large-up,tbody.hide-for-large,tbody.show-for-large-down,tbody.hide-for-xlarge-only,tbody.hide-for-xlarge-up,tbody.hide-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group !important}tr.show-for-small-only,tr.show-for-small-up,tr.show-for-small,tr.show-for-small-down,tr.hide-for-medium-only,tr.hide-for-medium-up,tr.hide-for-medium,tr.show-for-medium-down,tr.hide-for-large-only,tr.hide-for-large-up,tr.hide-for-large,tr.show-for-large-down,tr.hide-for-xlarge-only,tr.hide-for-xlarge-up,tr.hide-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row !important}th.show-for-small-only,td.show-for-small-only,th.show-for-small-up,td.show-for-small-up,th.show-for-small,td.show-for-small,th.show-for-small-down,td.show-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.hide-for-medium-up,td.hide-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.show-for-medium-down,td.show-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.hide-for-large-up,td.hide-for-large-up,th.hide-for-large,td.hide-for-large,th.show-for-large-down,td.show-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.hide-for-xlarge-up,td.hide-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell !important}}@media only screen and (min-width: 40.063em){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.show-for-medium-only,.show-for-medium-up,.show-for-medium,.show-for-medium-down,.hide-for-large-only,.hide-for-large-up,.hide-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit !important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.hide-for-medium-only,.hide-for-medium-up,.hide-for-medium,.hide-for-medium-down,.show-for-large-only,.show-for-large-up,.show-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none !important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.visible-for-medium-only,.visible-for-medium-up,.visible-for-medium,.visible-for-medium-down,.hidden-for-large-only,.hidden-for-large-up,.hidden-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.hidden-for-medium-only,.hidden-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.visible-for-large-only,.visible-for-large-up,.visible-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.show-for-medium-only,table.show-for-medium-up,table.show-for-medium,table.show-for-medium-down,table.hide-for-large-only,table.hide-for-large-up,table.hide-for-large,table.show-for-large-down,table.hide-for-xlarge-only,table.hide-for-xlarge-up,table.hide-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table !important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.show-for-medium-only,thead.show-for-medium-up,thead.show-for-medium,thead.show-for-medium-down,thead.hide-for-large-only,thead.hide-for-large-up,thead.hide-for-large,thead.show-for-large-down,thead.hide-for-xlarge-only,thead.hide-for-xlarge-up,thead.hide-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group !important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.show-for-medium-only,tbody.show-for-medium-up,tbody.show-for-medium,tbody.show-for-medium-down,tbody.hide-for-large-only,tbody.hide-for-large-up,tbody.hide-for-large,tbody.show-for-large-down,tbody.hide-for-xlarge-only,tbody.hide-for-xlarge-up,tbody.hide-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group !important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.show-for-medium-only,tr.show-for-medium-up,tr.show-for-medium,tr.show-for-medium-down,tr.hide-for-large-only,tr.hide-for-large-up,tr.hide-for-large,tr.show-for-large-down,tr.hide-for-xlarge-only,tr.hide-for-xlarge-up,tr.hide-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row !important}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.show-for-medium-only,td.show-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.show-for-medium,td.show-for-medium,th.show-for-medium-down,td.show-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.hide-for-large-up,td.hide-for-large-up,th.hide-for-large,td.hide-for-large,th.show-for-large-down,td.show-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.hide-for-xlarge-up,td.hide-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell !important}}@media only screen and (min-width: 64.063em){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.hide-for-medium-only,.show-for-medium-up,.hide-for-medium,.hide-for-medium-down,.show-for-large-only,.show-for-large-up,.show-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit !important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.show-for-medium-only,.hide-for-medium-up,.show-for-medium,.show-for-medium-down,.hide-for-large-only,.hide-for-large-up,.hide-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none !important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.hidden-for-medium-only,.visible-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.visible-for-large-only,.visible-for-large-up,.visible-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.visible-for-medium-only,.hidden-for-medium-up,.visible-for-medium,.visible-for-medium-down,.hidden-for-large-only,.hidden-for-large-up,.hidden-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.hide-for-medium-only,table.show-for-medium-up,table.hide-for-medium,table.hide-for-medium-down,table.show-for-large-only,table.show-for-large-up,table.show-for-large,table.show-for-large-down,table.hide-for-xlarge-only,table.hide-for-xlarge-up,table.hide-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table !important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.hide-for-medium-only,thead.show-for-medium-up,thead.hide-for-medium,thead.hide-for-medium-down,thead.show-for-large-only,thead.show-for-large-up,thead.show-for-large,thead.show-for-large-down,thead.hide-for-xlarge-only,thead.hide-for-xlarge-up,thead.hide-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group !important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.hide-for-medium-only,tbody.show-for-medium-up,tbody.hide-for-medium,tbody.hide-for-medium-down,tbody.show-for-large-only,tbody.show-for-large-up,tbody.show-for-large,tbody.show-for-large-down,tbody.hide-for-xlarge-only,tbody.hide-for-xlarge-up,tbody.hide-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group !important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.hide-for-medium-only,tr.show-for-medium-up,tr.hide-for-medium,tr.hide-for-medium-down,tr.show-for-large-only,tr.show-for-large-up,tr.show-for-large,tr.show-for-large-down,tr.hide-for-xlarge-only,tr.hide-for-xlarge-up,tr.hide-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row !important}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.hide-for-medium-down,td.hide-for-medium-down,th.show-for-large-only,td.show-for-large-only,th.show-for-large-up,td.show-for-large-up,th.show-for-large,td.show-for-large,th.show-for-large-down,td.show-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.hide-for-xlarge-up,td.hide-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell !important}}@media only screen and (min-width: 90.063em){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.hide-for-medium-only,.show-for-medium-up,.hide-for-medium,.hide-for-medium-down,.hide-for-large-only,.show-for-large-up,.hide-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit !important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.show-for-medium-only,.hide-for-medium-up,.show-for-medium,.show-for-medium-down,.show-for-large-only,.hide-for-large-up,.show-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none !important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.hidden-for-medium-only,.visible-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.hidden-for-large-only,.visible-for-large-up,.hidden-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.visible-for-medium-only,.hidden-for-medium-up,.visible-for-medium,.visible-for-medium-down,.visible-for-large-only,.hidden-for-large-up,.visible-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.hide-for-medium-only,table.show-for-medium-up,table.hide-for-medium,table.hide-for-medium-down,table.hide-for-large-only,table.show-for-large-up,table.hide-for-large,table.hide-for-large-down,table.show-for-xlarge-only,table.show-for-xlarge-up,table.show-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table !important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.hide-for-medium-only,thead.show-for-medium-up,thead.hide-for-medium,thead.hide-for-medium-down,thead.hide-for-large-only,thead.show-for-large-up,thead.hide-for-large,thead.hide-for-large-down,thead.show-for-xlarge-only,thead.show-for-xlarge-up,thead.show-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group !important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.hide-for-medium-only,tbody.show-for-medium-up,tbody.hide-for-medium,tbody.hide-for-medium-down,tbody.hide-for-large-only,tbody.show-for-large-up,tbody.hide-for-large,tbody.hide-for-large-down,tbody.show-for-xlarge-only,tbody.show-for-xlarge-up,tbody.show-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group !important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.hide-for-medium-only,tr.show-for-medium-up,tr.hide-for-medium,tr.hide-for-medium-down,tr.hide-for-large-only,tr.show-for-large-up,tr.hide-for-large,tr.hide-for-large-down,tr.show-for-xlarge-only,tr.show-for-xlarge-up,tr.show-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row !important}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.hide-for-medium-down,td.hide-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.show-for-large-up,td.show-for-large-up,th.hide-for-large,td.hide-for-large,th.hide-for-large-down,td.hide-for-large-down,th.show-for-xlarge-only,td.show-for-xlarge-only,th.show-for-xlarge-up,td.show-for-xlarge-up,th.show-for-xlarge,td.show-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell !important}}@media only screen and (min-width: 120.063em){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.hide-for-medium-only,.show-for-medium-up,.hide-for-medium,.hide-for-medium-down,.hide-for-large-only,.show-for-large-up,.hide-for-large,.hide-for-large-down,.hide-for-xlarge-only,.show-for-xlarge-up,.hide-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.show-for-xxlarge-down{display:inherit !important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.show-for-medium-only,.hide-for-medium-up,.show-for-medium,.show-for-medium-down,.show-for-large-only,.hide-for-large-up,.show-for-large,.show-for-large-down,.show-for-xlarge-only,.hide-for-xlarge-up,.show-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.hide-for-xxlarge-down{display:none !important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.hidden-for-medium-only,.visible-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.hidden-for-large-only,.visible-for-large-up,.hidden-for-large,.hidden-for-large-down,.hidden-for-xlarge-only,.visible-for-xlarge-up,.hidden-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.visible-for-xxlarge-down{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.visible-for-medium-only,.hidden-for-medium-up,.visible-for-medium,.visible-for-medium-down,.visible-for-large-only,.hidden-for-large-up,.visible-for-large,.visible-for-large-down,.visible-for-xlarge-only,.hidden-for-xlarge-up,.visible-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.hidden-for-xxlarge-down{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.hide-for-medium-only,table.show-for-medium-up,table.hide-for-medium,table.hide-for-medium-down,table.hide-for-large-only,table.show-for-large-up,table.hide-for-large,table.hide-for-large-down,table.hide-for-xlarge-only,table.show-for-xlarge-up,table.hide-for-xlarge,table.hide-for-xlarge-down,table.show-for-xxlarge-only,table.show-for-xxlarge-up,table.show-for-xxlarge,table.show-for-xxlarge-down{display:table !important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.hide-for-medium-only,thead.show-for-medium-up,thead.hide-for-medium,thead.hide-for-medium-down,thead.hide-for-large-only,thead.show-for-large-up,thead.hide-for-large,thead.hide-for-large-down,thead.hide-for-xlarge-only,thead.show-for-xlarge-up,thead.hide-for-xlarge,thead.hide-for-xlarge-down,thead.show-for-xxlarge-only,thead.show-for-xxlarge-up,thead.show-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group !important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.hide-for-medium-only,tbody.show-for-medium-up,tbody.hide-for-medium,tbody.hide-for-medium-down,tbody.hide-for-large-only,tbody.show-for-large-up,tbody.hide-for-large,tbody.hide-for-large-down,tbody.hide-for-xlarge-only,tbody.show-for-xlarge-up,tbody.hide-for-xlarge,tbody.hide-for-xlarge-down,tbody.show-for-xxlarge-only,tbody.show-for-xxlarge-up,tbody.show-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group !important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.hide-for-medium-only,tr.show-for-medium-up,tr.hide-for-medium,tr.hide-for-medium-down,tr.hide-for-large-only,tr.show-for-large-up,tr.hide-for-large,tr.hide-for-large-down,tr.hide-for-xlarge-only,tr.show-for-xlarge-up,tr.hide-for-xlarge,tr.hide-for-xlarge-down,tr.show-for-xxlarge-only,tr.show-for-xxlarge-up,tr.show-for-xxlarge,tr.show-for-xxlarge-down{display:table-row !important}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.hide-for-medium-down,td.hide-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.show-for-large-up,td.show-for-large-up,th.hide-for-large,td.hide-for-large,th.hide-for-large-down,td.hide-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.show-for-xlarge-up,td.show-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.hide-for-xlarge-down,td.hide-for-xlarge-down,th.show-for-xxlarge-only,td.show-for-xxlarge-only,th.show-for-xxlarge-up,td.show-for-xxlarge-up,th.show-for-xxlarge,td.show-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell !important}}.show-for-landscape,.hide-for-portrait{display:inherit !important}.hide-for-landscape,.show-for-portrait{display:none !important}table.hide-for-landscape,table.show-for-portrait{display:table !important}thead.hide-for-landscape,thead.show-for-portrait{display:table-header-group !important}tbody.hide-for-landscape,tbody.show-for-portrait{display:table-row-group !important}tr.hide-for-landscape,tr.show-for-portrait{display:table-row !important}td.hide-for-landscape,td.show-for-portrait,th.hide-for-landscape,th.show-for-portrait{display:table-cell !important}@media only screen and (orientation: landscape){.show-for-landscape,.hide-for-portrait{display:inherit !important}.hide-for-landscape,.show-for-portrait{display:none !important}table.show-for-landscape,table.hide-for-portrait{display:table !important}thead.show-for-landscape,thead.hide-for-portrait{display:table-header-group !important}tbody.show-for-landscape,tbody.hide-for-portrait{display:table-row-group !important}tr.show-for-landscape,tr.hide-for-portrait{display:table-row !important}td.show-for-landscape,td.hide-for-portrait,th.show-for-landscape,th.hide-for-portrait{display:table-cell !important}}@media only screen and (orientation: portrait){.show-for-portrait,.hide-for-landscape{display:inherit !important}.hide-for-portrait,.show-for-landscape{display:none !important}table.show-for-portrait,table.hide-for-landscape{display:table !important}thead.show-for-portrait,thead.hide-for-landscape{display:table-header-group !important}tbody.show-for-portrait,tbody.hide-for-landscape{display:table-row-group !important}tr.show-for-portrait,tr.hide-for-landscape{display:table-row !important}td.show-for-portrait,td.hide-for-landscape,th.show-for-portrait,th.hide-for-landscape{display:table-cell !important}}.show-for-touch{display:none !important}.hide-for-touch{display:inherit !important}.touch .show-for-touch{display:inherit !important}.touch .hide-for-touch{display:none !important}table.hide-for-touch{display:table !important}.touch table.show-for-touch{display:table !important}thead.hide-for-touch{display:table-header-group !important}.touch thead.show-for-touch{display:table-header-group !important}tbody.hide-for-touch{display:table-row-group !important}.touch tbody.show-for-touch{display:table-row-group !important}tr.hide-for-touch{display:table-row !important}.touch tr.show-for-touch{display:table-row !important}td.hide-for-touch{display:table-cell !important}.touch td.show-for-touch{display:table-cell !important}th.hide-for-touch{display:table-cell !important}.touch th.show-for-touch{display:table-cell !important}@media print{.show-for-print{display:block}.hide-for-print{display:none}table.show-for-print{display:table !important}thead.show-for-print{display:table-header-group !important}tbody.show-for-print{display:table-row-group !important}tr.show-for-print{display:table-row !important}td.show-for-print{display:table-cell !important}th.show-for-print{display:table-cell !important}}a,a:link{transition:all .4s}a:visited{border-bottom:#D7D7D7}a:hover{color:#21323b}a:focus{color:#57849e}a:active{color:#0f161a}p{-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto;-ms-word-break:normal;word-break:normal}p a,article a{font-weight:bold;border-bottom:1px dotted}p a:hover,article a:hover{border-bottom:2px solid}p a.button,.button,.button:hover{border:0;color:#fff}p.button a{border:0;color:#fff;text-shadow:0 1px 3px rgba(0,0,0,0.5)}h1,h2,h3,h4,h5,h6{font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:narrow;padding:0}h1{font-size:2.441em;margin-top:0}h2{font-size:1.953em;margin:1.563em 0 0 0}.blog-index h2{margin-top:0}h3{font-size:1.563em;margin:1.152em 0 0 0}h4{font-size:1.25em;margin:1.152em 0 0 0}h5{font-size:1.152em;margin:1em 0 0 0}img{border-radius:3px}img.alignleft,img.left{float:left;margin:5px 15px 5px 0}img.alignright,img.right{float:right;margin:5px 0 5px 15px}img.aligncenter,img.center{display:block;margin:0 auto 10px}figure{margin:0 0 1.875rem 0}#masthead-with-background-color figure,#masthead-with-pattern figure{margin:0}figcaption,.masthead-caption{color:#575757;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:.8125rem;padding-top:.125rem}figcaption a,.masthead-caption a{border-bottom:1px dotted #BEBEBE;color:#575757}figcaption a:hover,.masthead-caption a:hover{border-bottom:2px solid #BA4A00;color:#BA4A00}.masthead-caption{padding-right:10px;text-align:right}td{vertical-align:top}pre{overflow:auto;margin-bottom:1.25rem;padding:5px;background-color:#fef9f1;border-radius:3px}pre code{padding:.125rem .3125rem .0625rem 0;border:0}code{font-size:.875rem;line-height:1.5}ul,ol{margin-left:20px;padding:0}li{margin-left:0}.no-bullet{list-style:none;margin-left:0}li>ul,li>ol{margin-bottom:0}dt:first-child{padding-top:0px}dt{font-weight:bold;padding-top:30px}article dl dt{line-height:1.3}article dl dd{line-height:1.6;margin-bottom:.75rem;margin-left:1.5rem}blockquote{font-style:italic;position:relative;border:none;margin:0 30px 30px 30px;color:#4B4B4B}blockquote p{font-style:italic;color:#575757}blockquote:before{display:block;content:"\00BB";font-size:80px;line-height:0;position:absolute;left:-25px;top:auto;color:#4B4B4B}blockquote:after{display:block;content:"\00AB";font-size:80px;line-height:0;position:absolute;right:-10px;bottom:20px;color:#4B4B4B}blockquote cite:before{content:"— "}blockquote cite a,blockquote cite a:visited{color:#575757}cite{padding-top:5px}button,.button{letter-spacing:1px}mark{background-color:#f3cab2}.subheadline{font-size:1rem;margin:0;text-transform:uppercase}.teaser{font-size:1.25rem}.big-teaser{font-style:italic;font-weight:300}.big-teaser a{font-style:italic;font-weight:400}@media only screen{.big-teaser{font-size:1.25rem}}@media only screen and (min-width: 40.063em){.big-teaser{font-size:1.8125rem}}.sans{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}.serif{font-family:"Scope+One",Georgia,Times,serif}.font-size-h1{font-size:2.441em}.font-size-h2{font-size:1.953em}.font-size-h3{font-size:1.563em}.font-size-h4{font-size:1.25em}.font-size-h5{font-size:1.152em}.font-size-p{font-size:16px}.footnotes:before{content:"";position:absolute;height:1px;width:60px;margin-top:-10px;border-bottom:1px solid #D7D7D7}.footnotes{margin-top:60px}.footnotes ol{font-size:.8em}.footnotes p{font-size:inherit;margin-bottom:0}@font-face{font-family:'iconfont';src:url("../fonts/iconfont.eot");src:url("../fonts/iconfont.eot?#iefix") format("embedded-opentype"),url("../fonts/iconfont.woff") format("woff"),url("../fonts/iconfont.ttf") format("truetype"),url("../fonts/iconfont.svg#svgFontName") format("svg")}.iconfont{font-family:iconfont}.iconfont-48{font-size:48px}[data-icon]:before{content:attr(data-icon)}[data-icon]:before,.icon-archive:before,.icon-browser:before,.icon-calendar:before,.icon-camera:before,.icon-chat:before,.icon-check:before,.icon-chevron-down:before,.icon-chevron-left:before,.icon-chevron-right:before,.icon-chevron-up:before,.icon-circle-with-cross:before,.icon-circle-with-minus:before,.icon-circle-with-plus:before,.icon-cloud:before,.icon-code:before,.icon-cog:before,.icon-dropbox:before,.icon-edit:before,.icon-export:before,.icon-eye:before,.icon-facebook:before,.icon-feather:before,.icon-github:before,.icon-globe:before,.icon-googleplus:before,.icon-heart:before,.icon-heart-outlined:before,.icon-home:before,.icon-instagram:before,.icon-lab-flask:before,.icon-leaf:before,.icon-linkedin:before,.icon-mail:before,.icon-message:before,.icon-mic:before,.icon-network:before,.icon-paper-plane:before,.icon-pinterest:before,.icon-price-tag:before,.icon-rocket:before,.icon-rss:before,.icon-soundcloud:before,.icon-star:before,.icon-star-outlined:before,.icon-thumbs-down:before,.icon-thumbs-up:before,.icon-tree:before,.icon-tumblr:before,.icon-twitter:before,.icon-upload-to-cloud:before,.icon-video:before,.icon-vimeo:before,.icon-warning:before,.icon-xing:before,.icon-youtube:before{display:inline-block;font-family:"iconfont";font-style:normal;font-weight:normal;font-variant:normal;line-height:1;text-decoration:inherit;text-rendering:optimizeLegibility;text-transform:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-smoothing:antialiased}.icon-archive:before{content:"\f100"}.icon-browser:before{content:"\f101"}.icon-calendar:before{content:"\f133"}.icon-camera:before{content:"\f102"}.icon-chat:before{content:"\f103"}.icon-check:before{content:"\f104"}.icon-chevron-down:before{content:"\f105"}.icon-chevron-left:before{content:"\f106"}.icon-chevron-right:before{content:"\f107"}.icon-chevron-up:before{content:"\f108"}.icon-circle-with-cross:before{content:"\f109"}.icon-circle-with-minus:before{content:"\f10a"}.icon-circle-with-plus:before{content:"\f10b"}.icon-cloud:before{content:"\f10c"}.icon-code:before{content:"\f10d"}.icon-cog:before{content:"\f10e"}.icon-dropbox:before{content:"\f10f"}.icon-edit:before{content:"\f110"}.icon-export:before{content:"\f111"}.icon-eye:before{content:"\f112"}.icon-facebook:before{content:"\f113"}.icon-feather:before{content:"\f114"}.icon-github:before{content:"\f115"}.icon-globe:before{content:"\f116"}.icon-googleplus:before{content:"\f136"}.icon-heart:before{content:"\f117"}.icon-heart-outlined:before{content:"\f118"}.icon-home:before{content:"\f119"}.icon-instagram:before{content:"\f11a"}.icon-lab-flask:before{content:"\f11b"}.icon-leaf:before{content:"\f11c"}.icon-linkedin:before{content:"\f11d"}.icon-mail:before{content:"\f11e"}.icon-message:before{content:"\f11f"}.icon-mic:before{content:"\f120"}.icon-network:before{content:"\f121"}.icon-paper-plane:before{content:"\f122"}.icon-pinterest:before{content:"\f123"}.icon-price-tag:before{content:"\f124"}.icon-rocket:before{content:"\f125"}.icon-rss:before{content:"\f126"}.icon-soundcloud:before{content:"\f127"}.icon-star:before{content:"\f128"}.icon-star-outlined:before{content:"\f129"}.icon-thumbs-down:before{content:"\f12a"}.icon-thumbs-up:before{content:"\f12b"}.icon-tree:before{content:"\f134"}.icon-tumblr:before{content:"\f12c"}.icon-twitter:before{content:"\f12d"}.icon-upload-to-cloud:before{content:"\f12e"}.icon-video:before{content:"\f12f"}.icon-vimeo:before{content:"\f130"}.icon-warning:before{content:"\f131"}.icon-xing:before{content:"\f135"}.icon-youtube:before{content:"\f132"}body.video,body.video #masthead-no-image-header{background:#000}body.video #masthead-no-image-header{margin-bottom:60px}body.video h1,body.video h2,body.video h3,body.video h4,body.video h5,body.video h6,body.video p,body.video a,body.video blockquote:before,body.video blockquote:after,body.video cite a{color:#fff}body.video cite a:visited{color:#fff}body.video cite{color:#fff}#navigation{-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,0.2);box-shadow:0 2px 3px 0 rgba(0,0,0,0.2)}#navigation [class^='icon-']:before,#navigation [class*=' icon-']:before{margin-right:.5rem}.no-js form#search{display:none}#masthead{background-color:#FDEBD0}#masthead-no-image-header{background-color:#FDEBD0}#masthead-with-text{text-align:center;font-size:3.375rem;font-family:"Lato","Helvetica Neue",Helvetica,Arial,sans-serif;color:#fff;text-transform:uppercase;text-shadow:0 2px 3px rgba(0,0,0,0.4)}#masthead-no-image-header{height:175px}#masthead-no-image-header #logo img{margin-top:5px;max-height:165px}#slogan{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;color:#BA4A00}.valign-center{position:relative;top:50%}.valign-center>.columns{transform:translateY(-50%);-webkit-transform:translateY(-50%);-o-transform:translateY(-50%);-ms-transform:translateY(-50%)}#masthead h1,h2,h3,h4,h5{margin:0}@media only screen and (max-width: 40em){#logo img{display:none}#masthead{height:200px}#masthead-with-pattern{padding:15px 0}#masthead-with-background-color{padding:15px 0}#masthead-with-text{height:220px;padding:30px 0;font-size:2.25rem}#masthead-no-image-header{display:none}#slogan{font-size:1.5625rem}}@media only screen and (min-width: 40.063em) and (max-width: 64em){#masthead{height:280px}#masthead-with-pattern{padding:20px 0}#masthead-with-background-color{padding:20px 0}#masthead-with-text{padding:60px 0;height:300px}#slogan{font-size:1.5625rem}}@media only screen and (min-width: 64.063em) and (max-width: 90em){#masthead{height:310px}#masthead-with-pattern{padding:30px 0}#masthead-with-background-color{padding:30px 0}#masthead-with-text{height:330px;padding:60px 0}#slogan{font-size:1.875rem}}@media only screen and (min-width: 90.063em){#masthead{height:380px}#masthead-with-pattern{padding:45px 0}#masthead-with-background-color{padding:45px 0}#masthead-with-text{padding:95px 0;height:400px}#slogan{font-size:2.1875rem}}#title-image-small{height:240px}#title-image-large{height:520px}#title-image-index-small{height:120px}#title-image-index-large{height:260px}#breadcrumb{background:#f3f3f3;border-top:1px solid #f0f0f0;border-bottom:1px solid #f0f0f0}.breadcrumbs>.current{font-weight:bold}#page-meta,#page-meta a{color:#A4A4A4}#page-meta .button{background:#A4A4A4;border:0}#page-meta .button{color:#fff}#page-meta .button:hover{background:#BA4A00}.meta-info p{font-size:.8125rem;color:#efefef}.meta-info a{text-decoration:underline;color:#efefef}.meta-info a:hover{text-decoration:none;color:#FDEBD0}#blog-index .blog-meta p{color:#A4A4A4;font-size:.875rem}#blog-index p{margin-bottom:0}#blog-index h4 a{text-decoration:none}.post-meta{font-size:.8125rem;color:#A4A4A4}#up-to-top{padding:160px 0 10px 0}#up-to-top a{font-size:24px;padding:5px;border-radius:3px}#up-to-top a:hover{background:#D7D7D7}#footer-content p,#footer-content li{font-size:.8125rem;font-weight:300}#footer{padding-top:30px;padding-bottom:20px;background:#BA4A00;color:#fdfdfd}#footer a{color:#fdfdfd}#footer h4,#footer h5{letter-spacing:1px;color:#fff;text-transform:uppercase}#subfooter{background:#BA4A00;color:#fdfdfd;padding-top:30px}#subfooter-left ul.inline-list{float:left}.credits a{color:#fdfdfd;border:0;text-transform:uppercase}.credits a:hover{color:#fff}.social-icons{margin-bottom:10px !important}.social-icons li{padding:0 0 20px 0}.social-icons a{font-size:1.4375rem;display:block;width:36px;border-radius:50%;color:#BA4A00;background:#fdfdfd;text-align:center}.social-icons a:hover{background:#BA4A00;color:#fff}.t10{margin-top:10px !important}.t15{margin-top:15px !important}.t20{margin-top:20px !important}.t30{margin-top:30px !important}.t50{margin-top:50px !important}.t60{margin-top:60px !important}.t70{margin-top:70px !important}.t80{margin-top:80px !important}.t90{margin-top:90px !important}.b15{margin-bottom:15px !important}.b20{margin-bottom:20px !important}.b30{margin-bottom:30px !important}.b60{margin-bottom:60px !important}.l15{margin-left:15px !important}.r15{margin-right:15px !important}.pl20{padding-left:20px !important}.pr5{padding-right:5px !important}.pr10{padding-right:10px !important}.pr20{padding-right:20px !important}#toc ul,#toc ul ul,#toc ul ul ul{list-style:none;margin-left:30px}#toc ul{margin-left:0;margin-top:30px}.border-dotted{border:1px dotted #A4A4A4;padding:1.25rem;border-radius:3px}.shadow-no{text-shadow:transparent 0 0 0}.shadow-black{text-shadow:rgba(0,0,0,0.498039) 0px 1px 2px}.shadow-white{text-shadow:rgba(255,255,255,0.498039) 0px 1px 2px}.alert-box{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;text-shadow:0px 1px 1px rgba(0,0,0,0.9)}.alert-box p{margin-bottom:0}.alert-box a{color:#BA4A00;border-bottom:1px dotted #BA4A00}.alert-box a:hover{border-bottom:1px solid #fff}.alert-box.terminal{background:#3E3E3E;color:#fff;border-color:#353535;font-family:"Lucida Console",Monaco,monospace}.alert-box.terminal::before{content:"$ ";color:#A1D044;float:left;margin:.25em .5em 0 0}.alert-box.text{background-color:#D7D7D7;text-shadow:0px 0px 0px rgba(0,0,0,0.9);border-color:#b9b9b9;color:#3E3E3E}button,.button{letter-spacing:1px}button.grey,.button.grey{background:#575757}button.grey:hover,button.grey:focus,.button.grey:hover,.button.grey:focus{background-color:#0B0B0B}.side-nav li.title{text-transform:uppercase}.side-nav li{border-top:1px solid #CBCBCB}.side-nav li a:not(.button){border-bottom:0;padding:0.4375rem 0rem}.side-nav li a:not(.button):hover,.side-nav li a:not(.button):focus{background:#E4E4E4}.homepage p{margin:0;padding:0;color:#575757}dl.accordion{border-top:1px solid #D7D7D7}.accordion dd{border-bottom:1px solid #D7D7D7}dd.accordion-navigation span{padding-right:12px}dd.accordion-navigation span:before{content:""}dd.accordion-navigation.active span:before{content:""}dd.accordion-navigation.active span:before{content:""}/*! Lazy Load XT v1.0.6 2014-11-19 + * http://ressio.github.io/lazy-load-xt + * (C) 2014 RESS.io + * Licensed under MIT */img.lazy{display:none}.lazy-hidden{opacity:0}.lazy-loaded{-webkit-transition:opacity 0.7s;-moz-transition:opacity 0.7s;-ms-transition:opacity 0.7s;-o-transition:opacity 0.7s;transition:opacity 0.7s;opacity:1}.highlight .c{color:#998;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k{font-weight:bold}.highlight .o{font-weight:bold}.highlight .cm{color:#998;font-style:italic}.highlight .cp{color:#999;font-weight:bold}.highlight .c1{color:#998;font-style:italic}.highlight .cs{color:#999;font-weight:bold;font-style:italic}.highlight .gd{color:#000;background-color:#fdd}.highlight .gd .x{color:#000;background-color:#faa}.highlight .ge{font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:#999}.highlight .gi{color:#000;background-color:#dfd}.highlight .gi .x{color:#000;background-color:#afa}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs{font-weight:bold}.highlight .gu{color:#aaa}.highlight .gt{color:#a00}.highlight .kc{font-weight:bold}.highlight .kd{font-weight:bold}.highlight .kp{font-weight:bold}.highlight .kr{font-weight:bold}.highlight .kt{color:#458;font-weight:bold}.highlight .m{color:#099}.highlight .s{color:#d14}.highlight .na{color:teal}.highlight .nb{color:#0086B3}.highlight .nc{color:#458;font-weight:bold}.highlight .no{color:teal}.highlight .ni{color:purple}.highlight .ne{color:#900;font-weight:bold}.highlight .nf{color:#900;font-weight:bold}.highlight .nn{color:#555}.highlight .nt{color:navy}.highlight .nv{color:teal}.highlight .ow{font-weight:bold}.highlight .w{color:#bbb}.highlight .mf{color:#099}.highlight .mh{color:#099}.highlight .mi{color:#099}.highlight .mo{color:#099}.highlight .sb{color:#d14}.highlight .sc{color:#d14}.highlight .sd{color:#d14}.highlight .s2{color:#d14}.highlight .se{color:#d14}.highlight .sh{color:#d14}.highlight .si{color:#d14}.highlight .sx{color:#d14}.highlight .sr{color:#009926}.highlight .s1{color:#d14}.highlight .ss{color:#990073}.highlight .bp{color:#999}.highlight .vc{color:teal}.highlight .vg{color:teal}.highlight .vi{color:teal}.highlight .il{color:#099} diff --git a/assets/fonts/academicons.eot b/assets/fonts/academicons.eot new file mode 100755 index 000000000..aeac7091e Binary files /dev/null and b/assets/fonts/academicons.eot differ diff --git a/assets/fonts/academicons.svg b/assets/fonts/academicons.svg new file mode 100755 index 000000000..2599b714b --- /dev/null +++ b/assets/fonts/academicons.svg @@ -0,0 +1,107 @@ + + + + + + +{ + "fontFamily": "Academicons", + "majorVersion": 1, + "minorVersion": 8, + "fontURL": "https://jpswalsh.github.io/academicons/", + "description": "Font generated by IcoMoon.", + "designer": "James Walsh and Katja Bercic", + "designerURL": "http://jpswalsh.com", + "license": "SIL OFL 1.1", + "licenseURL": "http://scripts.sil.org/OFL", + "version": "Version 1.8", + "fontId": "Academicons", + "psName": "Academicons", + "subFamily": "Regular", + "fullName": "Academicons" +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/fonts/academicons.ttf b/assets/fonts/academicons.ttf new file mode 100755 index 000000000..4f42f958c Binary files /dev/null and b/assets/fonts/academicons.ttf differ diff --git a/assets/fonts/academicons.woff b/assets/fonts/academicons.woff new file mode 100755 index 000000000..11bb0c8ca Binary files /dev/null and b/assets/fonts/academicons.woff differ diff --git a/assets/fonts/fontcustom.yml b/assets/fonts/fontcustom.yml new file mode 100644 index 000000000..ccc911c23 --- /dev/null +++ b/assets/fonts/fontcustom.yml @@ -0,0 +1,96 @@ +# ============================================================================= +# Font Custom Configuration +# This file should live in the directory where you run `fontcustom compile`. +# For more info, visit . +# ============================================================================= + + +# ----------------------------------------------------------------------------- +# Project Info +# ----------------------------------------------------------------------------- + +# The font's name. Also determines the file names of generated templates. +font_name: iconfont + +# Format of CSS selectors. {{glyph}} is substituted for the glyph name. +css_selector: .icon-{{glyph}} + +# Generate fonts without asset-busting hashes. +no_hash: true + +# Encode WOFF fonts into the generated CSS. +#base64: true + +# Forces compilation, even if inputs have not changed +#force: true + +# Display (possibly useful) debugging messages. +#debug: true + +# Hide status messages. +#quiet: true + + +# ----------------------------------------------------------------------------- +# Input / Output Locations +# You can save generated fonts, CSS, and other files to different locations +# here. Font Custom can also read input vectors and templates from different +# places. +# +# NOTE: +# - Be sure to preserve the whitespace in these YAML hashes. +# - INPUT[:vectors] and OUTPUT[:fonts] are required. Everything else is +# optional. +# - Specify output locations for custom templates by including their file +# names as the key. +# ----------------------------------------------------------------------------- + +input: + vectors: svg-files-for-custom-font +# templates: my/templates + +output: + fonts: . + css: . +# preview: app/views/styleguide +# my-custom-template.yml: path/to/template/output + + +# ----------------------------------------------------------------------------- +# Templates +# A YAML array of templates and files to generate alongside fonts. Custom +# templates should be saved in the INPUT[:templates] directory and referenced +# by their base file name. +# +# For Rails and Compass templates, set `preprocessor_path` as the relative +# path from OUTPUT[:css] to OUTPUT[:fonts]. By default, these are the same +# directory. +# +# Included in Font Custom: preview, css, scss, scss-rails +# Default: css, preview +# ----------------------------------------------------------------------------- + +#templates: +#- scss-rails +#- preview +#- my-custom-template.yml + +#preprocessor_path: ../fonts/ + + +# ----------------------------------------------------------------------------- +# Font Settings (defaults shown) +# ----------------------------------------------------------------------------- + +# Size (in pica points) for which your font is designed. +font_design_size: 20 + +# The em size. Setting this will scale the entire font to the given size. +#font_em: 512 + +# The font's ascent and descent. Used to calculate the baseline. +#font_ascent: 448 +#font_descent: 64 + +# Horizontally fit glyphs to their individual vector widths. +#autowidth: false diff --git a/assets/fonts/iconfont-preview.html b/assets/fonts/iconfont-preview.html new file mode 100644 index 000000000..ecb190222 --- /dev/null +++ b/assets/fonts/iconfont-preview.html @@ -0,0 +1,1028 @@ + + + + iconfont glyphs preview + + + + + + + + + +
+
+

iconfont contains 55 glyphs:

+ Toggle Preview Characters +
+ + +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ +
+
+ PpPpPpPpPpPpPpPpPpPp +
+
+ 12141618212436486072 +
+
+ + +
+
+ + + +
+ + diff --git a/assets/fonts/iconfont.css b/assets/fonts/iconfont.css new file mode 100644 index 000000000..a748578f8 --- /dev/null +++ b/assets/fonts/iconfont.css @@ -0,0 +1,149 @@ +/* + Icon Font: iconfont +*/ + +@font-face { + font-family: "iconfont"; + src: url("./iconfont.eot"); + src: url("./iconfont.eot?#iefix") format("embedded-opentype"), + url("./iconfont.woff") format("woff"), + url("./iconfont.ttf") format("truetype"), + url("./iconfont.svg#iconfont") format("svg"); + font-weight: normal; + font-style: normal; +} + +@media screen and (-webkit-min-device-pixel-ratio:0) { + @font-face { + font-family: "iconfont"; + src: url("./iconfont.svg#iconfont") format("svg"); + } +} + +[data-icon]:before { content: attr(data-icon); } + +[data-icon]:before, +.icon-archive:before, +.icon-browser:before, +.icon-calendar:before, +.icon-camera:before, +.icon-chat:before, +.icon-check:before, +.icon-chevron-down:before, +.icon-chevron-left:before, +.icon-chevron-right:before, +.icon-chevron-up:before, +.icon-circle-with-cross:before, +.icon-circle-with-minus:before, +.icon-circle-with-plus:before, +.icon-cloud:before, +.icon-code:before, +.icon-cog:before, +.icon-dropbox:before, +.icon-edit:before, +.icon-export:before, +.icon-eye:before, +.icon-facebook:before, +.icon-feather:before, +.icon-github:before, +.icon-globe:before, +.icon-googleplus:before, +.icon-heart:before, +.icon-heart-outlined:before, +.icon-home:before, +.icon-instagram:before, +.icon-lab-flask:before, +.icon-leaf:before, +.icon-linkedin:before, +.icon-mail:before, +.icon-message:before, +.icon-mic:before, +.icon-network:before, +.icon-paper-plane:before, +.icon-pinterest:before, +.icon-price-tag:before, +.icon-rocket:before, +.icon-rss:before, +.icon-soundcloud:before, +.icon-star:before, +.icon-star-outlined:before, +.icon-thumbs-down:before, +.icon-thumbs-up:before, +.icon-tree:before, +.icon-tumblr:before, +.icon-twitter:before, +.icon-upload-to-cloud:before, +.icon-video:before, +.icon-vimeo:before, +.icon-warning:before, +.icon-xing:before, +.icon-youtube:before { + display: inline-block; + font-family: "iconfont"; + font-style: normal; + font-weight: normal; + font-variant: normal; + line-height: 1; + text-decoration: inherit; + text-rendering: optimizeLegibility; + text-transform: none; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + font-smoothing: antialiased; +} + +.icon-archive:before { content: "\f100"; } +.icon-browser:before { content: "\f101"; } +.icon-calendar:before { content: "\f133"; } +.icon-camera:before { content: "\f102"; } +.icon-chat:before { content: "\f103"; } +.icon-check:before { content: "\f104"; } +.icon-chevron-down:before { content: "\f105"; } +.icon-chevron-left:before { content: "\f106"; } +.icon-chevron-right:before { content: "\f107"; } +.icon-chevron-up:before { content: "\f108"; } +.icon-circle-with-cross:before { content: "\f109"; } +.icon-circle-with-minus:before { content: "\f10a"; } +.icon-circle-with-plus:before { content: "\f10b"; } +.icon-cloud:before { content: "\f10c"; } +.icon-code:before { content: "\f10d"; } +.icon-cog:before { content: "\f10e"; } +.icon-dropbox:before { content: "\f10f"; } +.icon-edit:before { content: "\f110"; } +.icon-export:before { content: "\f111"; } +.icon-eye:before { content: "\f112"; } +.icon-facebook:before { content: "\f113"; } +.icon-feather:before { content: "\f114"; } +.icon-github:before { content: "\f115"; } +.icon-globe:before { content: "\f116"; } +.icon-googleplus:before { content: "\f136"; } +.icon-heart:before { content: "\f117"; } +.icon-heart-outlined:before { content: "\f118"; } +.icon-home:before { content: "\f119"; } +.icon-instagram:before { content: "\f11a"; } +.icon-lab-flask:before { content: "\f11b"; } +.icon-leaf:before { content: "\f11c"; } +.icon-linkedin:before { content: "\f11d"; } +.icon-mail:before { content: "\f11e"; } +.icon-message:before { content: "\f11f"; } +.icon-mic:before { content: "\f120"; } +.icon-network:before { content: "\f121"; } +.icon-paper-plane:before { content: "\f122"; } +.icon-pinterest:before { content: "\f123"; } +.icon-price-tag:before { content: "\f124"; } +.icon-rocket:before { content: "\f125"; } +.icon-rss:before { content: "\f126"; } +.icon-soundcloud:before { content: "\f127"; } +.icon-star:before { content: "\f128"; } +.icon-star-outlined:before { content: "\f129"; } +.icon-thumbs-down:before { content: "\f12a"; } +.icon-thumbs-up:before { content: "\f12b"; } +.icon-tree:before { content: "\f134"; } +.icon-tumblr:before { content: "\f12c"; } +.icon-twitter:before { content: "\f12d"; } +.icon-upload-to-cloud:before { content: "\f12e"; } +.icon-video:before { content: "\f12f"; } +.icon-vimeo:before { content: "\f130"; } +.icon-warning:before { content: "\f131"; } +.icon-xing:before { content: "\f135"; } +.icon-youtube:before { content: "\f132"; } diff --git a/assets/fonts/iconfont.eot b/assets/fonts/iconfont.eot new file mode 100644 index 000000000..af95ebd3c Binary files /dev/null and b/assets/fonts/iconfont.eot differ diff --git a/assets/fonts/iconfont.svg b/assets/fonts/iconfont.svg new file mode 100644 index 000000000..b9e507c29 --- /dev/null +++ b/assets/fonts/iconfont.svg @@ -0,0 +1,273 @@ + + + + + +Created by FontForge 20120731 at Wed Jan 20 15:09:53 2016 + By Andrey Fedorov,,, +Created by Andrey Fedorov,,, with FontForge 2.0 (http://fontforge.sf.net) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/fonts/iconfont.ttf b/assets/fonts/iconfont.ttf new file mode 100644 index 000000000..2dab176b6 Binary files /dev/null and b/assets/fonts/iconfont.ttf differ diff --git a/assets/fonts/iconfont.woff b/assets/fonts/iconfont.woff new file mode 100644 index 000000000..965649eaf Binary files /dev/null and b/assets/fonts/iconfont.woff differ diff --git a/assets/fonts/svg-files-for-custom-font/archive.svg b/assets/fonts/svg-files-for-custom-font/archive.svg new file mode 100644 index 000000000..00f9e8c90 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/archive.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/browser.svg b/assets/fonts/svg-files-for-custom-font/browser.svg new file mode 100644 index 000000000..ca8c89d56 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/browser.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/calendar.svg b/assets/fonts/svg-files-for-custom-font/calendar.svg new file mode 100644 index 000000000..f654214b3 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/calendar.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/camera.svg b/assets/fonts/svg-files-for-custom-font/camera.svg new file mode 100644 index 000000000..0f11476cb --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/camera.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/chat.svg b/assets/fonts/svg-files-for-custom-font/chat.svg new file mode 100644 index 000000000..65b561246 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/chat.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/check.svg b/assets/fonts/svg-files-for-custom-font/check.svg new file mode 100644 index 000000000..08ee56d87 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/check.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/chevron-down.svg b/assets/fonts/svg-files-for-custom-font/chevron-down.svg new file mode 100644 index 000000000..7604d8905 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/chevron-down.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/chevron-left.svg b/assets/fonts/svg-files-for-custom-font/chevron-left.svg new file mode 100644 index 000000000..7fda04026 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/chevron-left.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/chevron-right.svg b/assets/fonts/svg-files-for-custom-font/chevron-right.svg new file mode 100644 index 000000000..0b2251cbb --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/chevron-right.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/chevron-up.svg b/assets/fonts/svg-files-for-custom-font/chevron-up.svg new file mode 100644 index 000000000..eb3c9c52e --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/chevron-up.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/circle-with-cross.svg b/assets/fonts/svg-files-for-custom-font/circle-with-cross.svg new file mode 100644 index 000000000..cf71b4024 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/circle-with-cross.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/circle-with-minus.svg b/assets/fonts/svg-files-for-custom-font/circle-with-minus.svg new file mode 100644 index 000000000..065344d6f --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/circle-with-minus.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/circle-with-plus.svg b/assets/fonts/svg-files-for-custom-font/circle-with-plus.svg new file mode 100644 index 000000000..f4f815c88 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/circle-with-plus.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/cloud.svg b/assets/fonts/svg-files-for-custom-font/cloud.svg new file mode 100644 index 000000000..a009fe53e --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/cloud.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/code.svg b/assets/fonts/svg-files-for-custom-font/code.svg new file mode 100644 index 000000000..33a99fd5d --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/code.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/cog.svg b/assets/fonts/svg-files-for-custom-font/cog.svg new file mode 100644 index 000000000..bc6fcfa1e --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/cog.svg @@ -0,0 +1,16 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/dropbox.svg b/assets/fonts/svg-files-for-custom-font/dropbox.svg new file mode 100644 index 000000000..61f72c2fd --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/dropbox.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/edit.svg b/assets/fonts/svg-files-for-custom-font/edit.svg new file mode 100644 index 000000000..bda9f0e37 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/edit.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/export.svg b/assets/fonts/svg-files-for-custom-font/export.svg new file mode 100644 index 000000000..ebcfc1fad --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/export.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/eye.svg b/assets/fonts/svg-files-for-custom-font/eye.svg new file mode 100644 index 000000000..a735aa941 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/eye.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/facebook.svg b/assets/fonts/svg-files-for-custom-font/facebook.svg new file mode 100644 index 000000000..dd1431874 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/facebook.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/feather.svg b/assets/fonts/svg-files-for-custom-font/feather.svg new file mode 100644 index 000000000..fcff3c19b --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/feather.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/github.svg b/assets/fonts/svg-files-for-custom-font/github.svg new file mode 100644 index 000000000..0ed94d327 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/github.svg @@ -0,0 +1,15 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/globe.svg b/assets/fonts/svg-files-for-custom-font/globe.svg new file mode 100644 index 000000000..59b1570b5 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/globe.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/heart-outlined.svg b/assets/fonts/svg-files-for-custom-font/heart-outlined.svg new file mode 100644 index 000000000..b1cec2f4f --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/heart-outlined.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/heart.svg b/assets/fonts/svg-files-for-custom-font/heart.svg new file mode 100644 index 000000000..5156b11c3 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/heart.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/home.svg b/assets/fonts/svg-files-for-custom-font/home.svg new file mode 100644 index 000000000..63e8a4e20 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/home.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/instagram.svg b/assets/fonts/svg-files-for-custom-font/instagram.svg new file mode 100644 index 000000000..9f7b527a4 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/instagram.svg @@ -0,0 +1,12 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/lab-flask.svg b/assets/fonts/svg-files-for-custom-font/lab-flask.svg new file mode 100644 index 000000000..d40e70ed3 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/lab-flask.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/leaf.svg b/assets/fonts/svg-files-for-custom-font/leaf.svg new file mode 100644 index 000000000..27be54666 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/leaf.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/linkedin.svg b/assets/fonts/svg-files-for-custom-font/linkedin.svg new file mode 100644 index 000000000..4541e3cc9 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/linkedin.svg @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/mail.svg b/assets/fonts/svg-files-for-custom-font/mail.svg new file mode 100644 index 000000000..5988c16f5 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/mail.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/message.svg b/assets/fonts/svg-files-for-custom-font/message.svg new file mode 100644 index 000000000..cae288b56 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/message.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/mic.svg b/assets/fonts/svg-files-for-custom-font/mic.svg new file mode 100644 index 000000000..81f58e14c --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/mic.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/network.svg b/assets/fonts/svg-files-for-custom-font/network.svg new file mode 100644 index 000000000..977de033a --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/network.svg @@ -0,0 +1,24 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/paper-plane.svg b/assets/fonts/svg-files-for-custom-font/paper-plane.svg new file mode 100644 index 000000000..57919d550 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/paper-plane.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/pinterest.svg b/assets/fonts/svg-files-for-custom-font/pinterest.svg new file mode 100644 index 000000000..b5f6f6e23 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/pinterest.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/price-tag.svg b/assets/fonts/svg-files-for-custom-font/price-tag.svg new file mode 100644 index 000000000..1c7fa4f2c --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/price-tag.svg @@ -0,0 +1,16 @@ + + + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/rocket.svg b/assets/fonts/svg-files-for-custom-font/rocket.svg new file mode 100644 index 000000000..3eb7415af --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/rocket.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/rss.svg b/assets/fonts/svg-files-for-custom-font/rss.svg new file mode 100644 index 000000000..f8f6033aa --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/rss.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/soundcloud.svg b/assets/fonts/svg-files-for-custom-font/soundcloud.svg new file mode 100644 index 000000000..3b3847179 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/soundcloud.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/star-outlined.svg b/assets/fonts/svg-files-for-custom-font/star-outlined.svg new file mode 100644 index 000000000..4759c4050 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/star-outlined.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/star.svg b/assets/fonts/svg-files-for-custom-font/star.svg new file mode 100644 index 000000000..d5d321afa --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/star.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/thumbs-down.svg b/assets/fonts/svg-files-for-custom-font/thumbs-down.svg new file mode 100644 index 000000000..171e2aa9e --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/thumbs-down.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/thumbs-up.svg b/assets/fonts/svg-files-for-custom-font/thumbs-up.svg new file mode 100644 index 000000000..dee3008ea --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/thumbs-up.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/tree.svg b/assets/fonts/svg-files-for-custom-font/tree.svg new file mode 100644 index 000000000..45a25805b --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/tree.svg @@ -0,0 +1,17 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/tumblr.svg b/assets/fonts/svg-files-for-custom-font/tumblr.svg new file mode 100644 index 000000000..7bc635013 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/tumblr.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/twitter.svg b/assets/fonts/svg-files-for-custom-font/twitter.svg new file mode 100644 index 000000000..136d22963 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/twitter.svg @@ -0,0 +1,13 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/upload-to-cloud.svg b/assets/fonts/svg-files-for-custom-font/upload-to-cloud.svg new file mode 100644 index 000000000..078684721 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/upload-to-cloud.svg @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/video.svg b/assets/fonts/svg-files-for-custom-font/video.svg new file mode 100644 index 000000000..f54ba0081 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/video.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/vimeo.svg b/assets/fonts/svg-files-for-custom-font/vimeo.svg new file mode 100644 index 000000000..81ed1c0b8 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/vimeo.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/warning.svg b/assets/fonts/svg-files-for-custom-font/warning.svg new file mode 100644 index 000000000..a571a2521 --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/warning.svg @@ -0,0 +1,9 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/xing.svg b/assets/fonts/svg-files-for-custom-font/xing.svg new file mode 100644 index 000000000..ca14ad7be --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/xing.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/assets/fonts/svg-files-for-custom-font/youtube.svg b/assets/fonts/svg-files-for-custom-font/youtube.svg new file mode 100644 index 000000000..8dbfef6ec --- /dev/null +++ b/assets/fonts/svg-files-for-custom-font/youtube.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/assets/img/Badge_Carpentries.png b/assets/img/Badge_Carpentries.png new file mode 100644 index 000000000..f883ece8a Binary files /dev/null and b/assets/img/Badge_Carpentries.png differ diff --git a/assets/img/HPC-Carpentry-opengraph.png b/assets/img/HPC-Carpentry-opengraph.png new file mode 100644 index 000000000..816afe8fa Binary files /dev/null and b/assets/img/HPC-Carpentry-opengraph.png differ diff --git a/assets/img/SWC_DC.png b/assets/img/SWC_DC.png new file mode 100644 index 000000000..da05fc705 Binary files /dev/null and b/assets/img/SWC_DC.png differ diff --git a/assets/img/TheCarpentries.png b/assets/img/TheCarpentries.png new file mode 100644 index 000000000..824187f2f Binary files /dev/null and b/assets/img/TheCarpentries.png differ diff --git a/assets/img/TheCarpentries.svg b/assets/img/TheCarpentries.svg new file mode 100644 index 000000000..34cceed92 --- /dev/null +++ b/assets/img/TheCarpentries.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/img/android-chrome-192x192.png b/assets/img/android-chrome-192x192.png new file mode 100644 index 000000000..4e62a39b5 Binary files /dev/null and b/assets/img/android-chrome-192x192.png differ diff --git a/assets/img/android-chrome-384x384.png b/assets/img/android-chrome-384x384.png new file mode 100644 index 000000000..4e62a39b5 Binary files /dev/null and b/assets/img/android-chrome-384x384.png differ diff --git a/assets/img/apple-touch-icon-114x114.png b/assets/img/apple-touch-icon-114x114.png new file mode 100644 index 000000000..3a3b5c817 Binary files /dev/null and b/assets/img/apple-touch-icon-114x114.png differ diff --git a/assets/img/apple-touch-icon-120x120.png b/assets/img/apple-touch-icon-120x120.png new file mode 100644 index 000000000..3a3b5c817 Binary files /dev/null and b/assets/img/apple-touch-icon-120x120.png differ diff --git a/assets/img/apple-touch-icon-144x144.png b/assets/img/apple-touch-icon-144x144.png new file mode 100644 index 000000000..3a3b5c817 Binary files /dev/null and b/assets/img/apple-touch-icon-144x144.png differ diff --git a/assets/img/apple-touch-icon-152x152.png b/assets/img/apple-touch-icon-152x152.png new file mode 100644 index 000000000..3a3b5c817 Binary files /dev/null and b/assets/img/apple-touch-icon-152x152.png differ diff --git a/assets/img/apple-touch-icon-72x72.png b/assets/img/apple-touch-icon-72x72.png new file mode 100644 index 000000000..3a3b5c817 Binary files /dev/null and b/assets/img/apple-touch-icon-72x72.png differ diff --git a/assets/img/apple-touch-icon-76x76.png b/assets/img/apple-touch-icon-76x76.png new file mode 100644 index 000000000..3a3b5c817 Binary files /dev/null and b/assets/img/apple-touch-icon-76x76.png differ diff --git a/assets/img/apple-touch-icon.png b/assets/img/apple-touch-icon.png new file mode 100644 index 000000000..4e62a39b5 Binary files /dev/null and b/assets/img/apple-touch-icon.png differ diff --git a/assets/img/browserconfig.xml b/assets/img/browserconfig.xml new file mode 100644 index 000000000..249c5c172 --- /dev/null +++ b/assets/img/browserconfig.xml @@ -0,0 +1,9 @@ + + + + + + #ffc40d + + + diff --git a/assets/img/favicon-16x16.png b/assets/img/favicon-16x16.png new file mode 100644 index 000000000..4e62a39b5 Binary files /dev/null and b/assets/img/favicon-16x16.png differ diff --git a/assets/img/favicon-32x32.png b/assets/img/favicon-32x32.png new file mode 100644 index 000000000..4e62a39b5 Binary files /dev/null and b/assets/img/favicon-32x32.png differ diff --git a/assets/img/favicon.ico b/assets/img/favicon.ico new file mode 100644 index 000000000..c64114c4a Binary files /dev/null and b/assets/img/favicon.ico differ diff --git a/assets/img/favicon.png b/assets/img/favicon.png new file mode 100644 index 000000000..4e62a39b5 Binary files /dev/null and b/assets/img/favicon.png differ diff --git a/assets/img/flags/24/ad.png b/assets/img/flags/24/ad.png new file mode 100644 index 000000000..6345f6641 Binary files /dev/null and b/assets/img/flags/24/ad.png differ diff --git a/assets/img/flags/24/ae.png b/assets/img/flags/24/ae.png new file mode 100644 index 000000000..6c2a7dbfb Binary files /dev/null and b/assets/img/flags/24/ae.png differ diff --git a/assets/img/flags/24/af.png b/assets/img/flags/24/af.png new file mode 100644 index 000000000..cd325bf34 Binary files /dev/null and b/assets/img/flags/24/af.png differ diff --git a/assets/img/flags/24/ag.png b/assets/img/flags/24/ag.png new file mode 100644 index 000000000..5068b43d1 Binary files /dev/null and b/assets/img/flags/24/ag.png differ diff --git a/assets/img/flags/24/ai.png b/assets/img/flags/24/ai.png new file mode 100644 index 000000000..a66d2f101 Binary files /dev/null and b/assets/img/flags/24/ai.png differ diff --git a/assets/img/flags/24/al.png b/assets/img/flags/24/al.png new file mode 100644 index 000000000..d5aacd9e3 Binary files /dev/null and b/assets/img/flags/24/al.png differ diff --git a/assets/img/flags/24/am.png b/assets/img/flags/24/am.png new file mode 100644 index 000000000..5864fc877 Binary files /dev/null and b/assets/img/flags/24/am.png differ diff --git a/assets/img/flags/24/an.png b/assets/img/flags/24/an.png new file mode 100644 index 000000000..febec63de Binary files /dev/null and b/assets/img/flags/24/an.png differ diff --git a/assets/img/flags/24/ao.png b/assets/img/flags/24/ao.png new file mode 100644 index 000000000..277f9405e Binary files /dev/null and b/assets/img/flags/24/ao.png differ diff --git a/assets/img/flags/24/aq.png b/assets/img/flags/24/aq.png new file mode 100644 index 000000000..16bb335f7 Binary files /dev/null and b/assets/img/flags/24/aq.png differ diff --git a/assets/img/flags/24/ar.png b/assets/img/flags/24/ar.png new file mode 100644 index 000000000..5565e71fe Binary files /dev/null and b/assets/img/flags/24/ar.png differ diff --git a/assets/img/flags/24/as.png b/assets/img/flags/24/as.png new file mode 100644 index 000000000..ccd153ed7 Binary files /dev/null and b/assets/img/flags/24/as.png differ diff --git a/assets/img/flags/24/at.png b/assets/img/flags/24/at.png new file mode 100644 index 000000000..32ec53b13 Binary files /dev/null and b/assets/img/flags/24/at.png differ diff --git a/assets/img/flags/24/au.png b/assets/img/flags/24/au.png new file mode 100644 index 000000000..b2fcce5e5 Binary files /dev/null and b/assets/img/flags/24/au.png differ diff --git a/assets/img/flags/24/aw.png b/assets/img/flags/24/aw.png new file mode 100644 index 000000000..d6eb41840 Binary files /dev/null and b/assets/img/flags/24/aw.png differ diff --git a/assets/img/flags/24/az.png b/assets/img/flags/24/az.png new file mode 100644 index 000000000..d76fab8fc Binary files /dev/null and b/assets/img/flags/24/az.png differ diff --git a/assets/img/flags/24/ba.png b/assets/img/flags/24/ba.png new file mode 100644 index 000000000..16da3c1f5 Binary files /dev/null and b/assets/img/flags/24/ba.png differ diff --git a/assets/img/flags/24/bb.png b/assets/img/flags/24/bb.png new file mode 100644 index 000000000..1fd3d827a Binary files /dev/null and b/assets/img/flags/24/bb.png differ diff --git a/assets/img/flags/24/bd.png b/assets/img/flags/24/bd.png new file mode 100644 index 000000000..accbbe386 Binary files /dev/null and b/assets/img/flags/24/bd.png differ diff --git a/assets/img/flags/24/be.png b/assets/img/flags/24/be.png new file mode 100644 index 000000000..5b5340242 Binary files /dev/null and b/assets/img/flags/24/be.png differ diff --git a/assets/img/flags/24/bf.png b/assets/img/flags/24/bf.png new file mode 100644 index 000000000..ad9906675 Binary files /dev/null and b/assets/img/flags/24/bf.png differ diff --git a/assets/img/flags/24/bg.png b/assets/img/flags/24/bg.png new file mode 100644 index 000000000..ef1131409 Binary files /dev/null and b/assets/img/flags/24/bg.png differ diff --git a/assets/img/flags/24/bh.png b/assets/img/flags/24/bh.png new file mode 100644 index 000000000..b82eb7ac1 Binary files /dev/null and b/assets/img/flags/24/bh.png differ diff --git a/assets/img/flags/24/bi.png b/assets/img/flags/24/bi.png new file mode 100644 index 000000000..5dc84b83b Binary files /dev/null and b/assets/img/flags/24/bi.png differ diff --git a/assets/img/flags/24/bj.png b/assets/img/flags/24/bj.png new file mode 100644 index 000000000..0871ec959 Binary files /dev/null and b/assets/img/flags/24/bj.png differ diff --git a/assets/img/flags/24/bm.png b/assets/img/flags/24/bm.png new file mode 100644 index 000000000..6da6c0082 Binary files /dev/null and b/assets/img/flags/24/bm.png differ diff --git a/assets/img/flags/24/bn.png b/assets/img/flags/24/bn.png new file mode 100644 index 000000000..71975557a Binary files /dev/null and b/assets/img/flags/24/bn.png differ diff --git a/assets/img/flags/24/bo.png b/assets/img/flags/24/bo.png new file mode 100644 index 000000000..8e9131043 Binary files /dev/null and b/assets/img/flags/24/bo.png differ diff --git a/assets/img/flags/24/br.png b/assets/img/flags/24/br.png new file mode 100644 index 000000000..78c57dea2 Binary files /dev/null and b/assets/img/flags/24/br.png differ diff --git a/assets/img/flags/24/bs.png b/assets/img/flags/24/bs.png new file mode 100644 index 000000000..7dfc7b31c Binary files /dev/null and b/assets/img/flags/24/bs.png differ diff --git a/assets/img/flags/24/bt.png b/assets/img/flags/24/bt.png new file mode 100644 index 000000000..652d1286a Binary files /dev/null and b/assets/img/flags/24/bt.png differ diff --git a/assets/img/flags/24/bw.png b/assets/img/flags/24/bw.png new file mode 100644 index 000000000..cd210e93b Binary files /dev/null and b/assets/img/flags/24/bw.png differ diff --git a/assets/img/flags/24/by.png b/assets/img/flags/24/by.png new file mode 100644 index 000000000..b61188078 Binary files /dev/null and b/assets/img/flags/24/by.png differ diff --git a/assets/img/flags/24/bz.png b/assets/img/flags/24/bz.png new file mode 100644 index 000000000..08726c802 Binary files /dev/null and b/assets/img/flags/24/bz.png differ diff --git a/assets/img/flags/24/ca.png b/assets/img/flags/24/ca.png new file mode 100644 index 000000000..bc3371cb9 Binary files /dev/null and b/assets/img/flags/24/ca.png differ diff --git a/assets/img/flags/24/cd.png b/assets/img/flags/24/cd.png new file mode 100644 index 000000000..97be18e69 Binary files /dev/null and b/assets/img/flags/24/cd.png differ diff --git a/assets/img/flags/24/cf.png b/assets/img/flags/24/cf.png new file mode 100644 index 000000000..6266f4046 Binary files /dev/null and b/assets/img/flags/24/cf.png differ diff --git a/assets/img/flags/24/cg.png b/assets/img/flags/24/cg.png new file mode 100644 index 000000000..1e37c7d66 Binary files /dev/null and b/assets/img/flags/24/cg.png differ diff --git a/assets/img/flags/24/ch.png b/assets/img/flags/24/ch.png new file mode 100644 index 000000000..0732b0916 Binary files /dev/null and b/assets/img/flags/24/ch.png differ diff --git a/assets/img/flags/24/ci.png b/assets/img/flags/24/ci.png new file mode 100644 index 000000000..b40bf0a8f Binary files /dev/null and b/assets/img/flags/24/ci.png differ diff --git a/assets/img/flags/24/ck.png b/assets/img/flags/24/ck.png new file mode 100644 index 000000000..e4b177313 Binary files /dev/null and b/assets/img/flags/24/ck.png differ diff --git a/assets/img/flags/24/cl.png b/assets/img/flags/24/cl.png new file mode 100644 index 000000000..4d149df14 Binary files /dev/null and b/assets/img/flags/24/cl.png differ diff --git a/assets/img/flags/24/cm.png b/assets/img/flags/24/cm.png new file mode 100644 index 000000000..3560c7bc2 Binary files /dev/null and b/assets/img/flags/24/cm.png differ diff --git a/assets/img/flags/24/cn.png b/assets/img/flags/24/cn.png new file mode 100644 index 000000000..4836b0fe3 Binary files /dev/null and b/assets/img/flags/24/cn.png differ diff --git a/assets/img/flags/24/co.png b/assets/img/flags/24/co.png new file mode 100644 index 000000000..4823ad0ac Binary files /dev/null and b/assets/img/flags/24/co.png differ diff --git a/assets/img/flags/24/cr.png b/assets/img/flags/24/cr.png new file mode 100644 index 000000000..f1a97839d Binary files /dev/null and b/assets/img/flags/24/cr.png differ diff --git a/assets/img/flags/24/cu.png b/assets/img/flags/24/cu.png new file mode 100644 index 000000000..33817395f Binary files /dev/null and b/assets/img/flags/24/cu.png differ diff --git a/assets/img/flags/24/cv.png b/assets/img/flags/24/cv.png new file mode 100644 index 000000000..66c8f07a4 Binary files /dev/null and b/assets/img/flags/24/cv.png differ diff --git a/assets/img/flags/24/cy.png b/assets/img/flags/24/cy.png new file mode 100644 index 000000000..18847ce2d Binary files /dev/null and b/assets/img/flags/24/cy.png differ diff --git a/assets/img/flags/24/cz.png b/assets/img/flags/24/cz.png new file mode 100644 index 000000000..9e2cef20a Binary files /dev/null and b/assets/img/flags/24/cz.png differ diff --git a/assets/img/flags/24/de.png b/assets/img/flags/24/de.png new file mode 100644 index 000000000..e840992d9 Binary files /dev/null and b/assets/img/flags/24/de.png differ diff --git a/assets/img/flags/24/dj.png b/assets/img/flags/24/dj.png new file mode 100644 index 000000000..3162e235e Binary files /dev/null and b/assets/img/flags/24/dj.png differ diff --git a/assets/img/flags/24/dk.png b/assets/img/flags/24/dk.png new file mode 100644 index 000000000..cab553dae Binary files /dev/null and b/assets/img/flags/24/dk.png differ diff --git a/assets/img/flags/24/dm.png b/assets/img/flags/24/dm.png new file mode 100644 index 000000000..251d5721c Binary files /dev/null and b/assets/img/flags/24/dm.png differ diff --git a/assets/img/flags/24/do.png b/assets/img/flags/24/do.png new file mode 100644 index 000000000..c1e310c9e Binary files /dev/null and b/assets/img/flags/24/do.png differ diff --git a/assets/img/flags/24/dz.png b/assets/img/flags/24/dz.png new file mode 100644 index 000000000..187aa0fca Binary files /dev/null and b/assets/img/flags/24/dz.png differ diff --git a/assets/img/flags/24/ec.png b/assets/img/flags/24/ec.png new file mode 100644 index 000000000..79ddc253c Binary files /dev/null and b/assets/img/flags/24/ec.png differ diff --git a/assets/img/flags/24/ee.png b/assets/img/flags/24/ee.png new file mode 100644 index 000000000..20bfc87c0 Binary files /dev/null and b/assets/img/flags/24/ee.png differ diff --git a/assets/img/flags/24/eg.png b/assets/img/flags/24/eg.png new file mode 100644 index 000000000..d96fd30dc Binary files /dev/null and b/assets/img/flags/24/eg.png differ diff --git a/assets/img/flags/24/eh.png b/assets/img/flags/24/eh.png new file mode 100644 index 000000000..ce9ee8303 Binary files /dev/null and b/assets/img/flags/24/eh.png differ diff --git a/assets/img/flags/24/er.png b/assets/img/flags/24/er.png new file mode 100644 index 000000000..87bc7b081 Binary files /dev/null and b/assets/img/flags/24/er.png differ diff --git a/assets/img/flags/24/es.png b/assets/img/flags/24/es.png new file mode 100644 index 000000000..2fe8dafb4 Binary files /dev/null and b/assets/img/flags/24/es.png differ diff --git a/assets/img/flags/24/et.png b/assets/img/flags/24/et.png new file mode 100644 index 000000000..e5e5c7381 Binary files /dev/null and b/assets/img/flags/24/et.png differ diff --git a/assets/img/flags/24/fi.png b/assets/img/flags/24/fi.png new file mode 100644 index 000000000..453781e44 Binary files /dev/null and b/assets/img/flags/24/fi.png differ diff --git a/assets/img/flags/24/fj.png b/assets/img/flags/24/fj.png new file mode 100644 index 000000000..51aa3f1c2 Binary files /dev/null and b/assets/img/flags/24/fj.png differ diff --git a/assets/img/flags/24/fm.png b/assets/img/flags/24/fm.png new file mode 100644 index 000000000..72824685c Binary files /dev/null and b/assets/img/flags/24/fm.png differ diff --git a/assets/img/flags/24/fo.png b/assets/img/flags/24/fo.png new file mode 100644 index 000000000..95da08324 Binary files /dev/null and b/assets/img/flags/24/fo.png differ diff --git a/assets/img/flags/24/fr.png b/assets/img/flags/24/fr.png new file mode 100644 index 000000000..fd40c4116 Binary files /dev/null and b/assets/img/flags/24/fr.png differ diff --git a/assets/img/flags/24/ga.png b/assets/img/flags/24/ga.png new file mode 100644 index 000000000..b8781c42c Binary files /dev/null and b/assets/img/flags/24/ga.png differ diff --git a/assets/img/flags/24/gb.png b/assets/img/flags/24/gb.png new file mode 100644 index 000000000..51a27cf1d Binary files /dev/null and b/assets/img/flags/24/gb.png differ diff --git a/assets/img/flags/24/gd.png b/assets/img/flags/24/gd.png new file mode 100644 index 000000000..4c4f8c0d5 Binary files /dev/null and b/assets/img/flags/24/gd.png differ diff --git a/assets/img/flags/24/ge.png b/assets/img/flags/24/ge.png new file mode 100644 index 000000000..3f5baa64f Binary files /dev/null and b/assets/img/flags/24/ge.png differ diff --git a/assets/img/flags/24/gg.png b/assets/img/flags/24/gg.png new file mode 100644 index 000000000..e3e4f5465 Binary files /dev/null and b/assets/img/flags/24/gg.png differ diff --git a/assets/img/flags/24/gh.png b/assets/img/flags/24/gh.png new file mode 100644 index 000000000..47d5cf0f9 Binary files /dev/null and b/assets/img/flags/24/gh.png differ diff --git a/assets/img/flags/24/gi.png b/assets/img/flags/24/gi.png new file mode 100644 index 000000000..0cd716f8b Binary files /dev/null and b/assets/img/flags/24/gi.png differ diff --git a/assets/img/flags/24/gl.png b/assets/img/flags/24/gl.png new file mode 100644 index 000000000..bc12e81ff Binary files /dev/null and b/assets/img/flags/24/gl.png differ diff --git a/assets/img/flags/24/gm.png b/assets/img/flags/24/gm.png new file mode 100644 index 000000000..2c9b4e18d Binary files /dev/null and b/assets/img/flags/24/gm.png differ diff --git a/assets/img/flags/24/gn.png b/assets/img/flags/24/gn.png new file mode 100644 index 000000000..37b938301 Binary files /dev/null and b/assets/img/flags/24/gn.png differ diff --git a/assets/img/flags/24/gp.png b/assets/img/flags/24/gp.png new file mode 100644 index 000000000..7ae1c22e1 Binary files /dev/null and b/assets/img/flags/24/gp.png differ diff --git a/assets/img/flags/24/gq.png b/assets/img/flags/24/gq.png new file mode 100644 index 000000000..9064e4550 Binary files /dev/null and b/assets/img/flags/24/gq.png differ diff --git a/assets/img/flags/24/gr.png b/assets/img/flags/24/gr.png new file mode 100644 index 000000000..674ef07f3 Binary files /dev/null and b/assets/img/flags/24/gr.png differ diff --git a/assets/img/flags/24/group.png b/assets/img/flags/24/group.png new file mode 100644 index 000000000..4bc302e37 Binary files /dev/null and b/assets/img/flags/24/group.png differ diff --git a/assets/img/flags/24/gt.png b/assets/img/flags/24/gt.png new file mode 100644 index 000000000..b9c564c07 Binary files /dev/null and b/assets/img/flags/24/gt.png differ diff --git a/assets/img/flags/24/gu.png b/assets/img/flags/24/gu.png new file mode 100644 index 000000000..d92fabcfe Binary files /dev/null and b/assets/img/flags/24/gu.png differ diff --git a/assets/img/flags/24/gw.png b/assets/img/flags/24/gw.png new file mode 100644 index 000000000..3f5dc708c Binary files /dev/null and b/assets/img/flags/24/gw.png differ diff --git a/assets/img/flags/24/gy.png b/assets/img/flags/24/gy.png new file mode 100644 index 000000000..25e4f4b9c Binary files /dev/null and b/assets/img/flags/24/gy.png differ diff --git a/assets/img/flags/24/hk.png b/assets/img/flags/24/hk.png new file mode 100644 index 000000000..30e902889 Binary files /dev/null and b/assets/img/flags/24/hk.png differ diff --git a/assets/img/flags/24/hn.png b/assets/img/flags/24/hn.png new file mode 100644 index 000000000..c1d7bcb39 Binary files /dev/null and b/assets/img/flags/24/hn.png differ diff --git a/assets/img/flags/24/hr.png b/assets/img/flags/24/hr.png new file mode 100644 index 000000000..5cca39ee9 Binary files /dev/null and b/assets/img/flags/24/hr.png differ diff --git a/assets/img/flags/24/ht.png b/assets/img/flags/24/ht.png new file mode 100644 index 000000000..c3fa0f70e Binary files /dev/null and b/assets/img/flags/24/ht.png differ diff --git a/assets/img/flags/24/hu.png b/assets/img/flags/24/hu.png new file mode 100644 index 000000000..5d23ba4a4 Binary files /dev/null and b/assets/img/flags/24/hu.png differ diff --git a/assets/img/flags/24/id.png b/assets/img/flags/24/id.png new file mode 100644 index 000000000..704c21aeb Binary files /dev/null and b/assets/img/flags/24/id.png differ diff --git a/assets/img/flags/24/ie.png b/assets/img/flags/24/ie.png new file mode 100644 index 000000000..505964b9f Binary files /dev/null and b/assets/img/flags/24/ie.png differ diff --git a/assets/img/flags/24/il.png b/assets/img/flags/24/il.png new file mode 100644 index 000000000..39ade9b78 Binary files /dev/null and b/assets/img/flags/24/il.png differ diff --git a/assets/img/flags/24/im.png b/assets/img/flags/24/im.png new file mode 100644 index 000000000..d3e8da787 Binary files /dev/null and b/assets/img/flags/24/im.png differ diff --git a/assets/img/flags/24/in.png b/assets/img/flags/24/in.png new file mode 100644 index 000000000..2467d4151 Binary files /dev/null and b/assets/img/flags/24/in.png differ diff --git a/assets/img/flags/24/iq.png b/assets/img/flags/24/iq.png new file mode 100644 index 000000000..a44a93b09 Binary files /dev/null and b/assets/img/flags/24/iq.png differ diff --git a/assets/img/flags/24/ir.png b/assets/img/flags/24/ir.png new file mode 100644 index 000000000..c76443bc3 Binary files /dev/null and b/assets/img/flags/24/ir.png differ diff --git a/assets/img/flags/24/is.png b/assets/img/flags/24/is.png new file mode 100644 index 000000000..40da30f7d Binary files /dev/null and b/assets/img/flags/24/is.png differ diff --git a/assets/img/flags/24/it.png b/assets/img/flags/24/it.png new file mode 100644 index 000000000..5951ae064 Binary files /dev/null and b/assets/img/flags/24/it.png differ diff --git a/assets/img/flags/24/je.png b/assets/img/flags/24/je.png new file mode 100644 index 000000000..03786eae7 Binary files /dev/null and b/assets/img/flags/24/je.png differ diff --git a/assets/img/flags/24/jm.png b/assets/img/flags/24/jm.png new file mode 100644 index 000000000..846255222 Binary files /dev/null and b/assets/img/flags/24/jm.png differ diff --git a/assets/img/flags/24/jo.png b/assets/img/flags/24/jo.png new file mode 100644 index 000000000..4a0fa27dd Binary files /dev/null and b/assets/img/flags/24/jo.png differ diff --git a/assets/img/flags/24/jp.png b/assets/img/flags/24/jp.png new file mode 100644 index 000000000..0210320f0 Binary files /dev/null and b/assets/img/flags/24/jp.png differ diff --git a/assets/img/flags/24/ke.png b/assets/img/flags/24/ke.png new file mode 100644 index 000000000..916385235 Binary files /dev/null and b/assets/img/flags/24/ke.png differ diff --git a/assets/img/flags/24/kg.png b/assets/img/flags/24/kg.png new file mode 100644 index 000000000..db8061fd9 Binary files /dev/null and b/assets/img/flags/24/kg.png differ diff --git a/assets/img/flags/24/kh.png b/assets/img/flags/24/kh.png new file mode 100644 index 000000000..5f4321d07 Binary files /dev/null and b/assets/img/flags/24/kh.png differ diff --git a/assets/img/flags/24/ki.png b/assets/img/flags/24/ki.png new file mode 100644 index 000000000..c91aa3ac1 Binary files /dev/null and b/assets/img/flags/24/ki.png differ diff --git a/assets/img/flags/24/km.png b/assets/img/flags/24/km.png new file mode 100644 index 000000000..0dc3c09d9 Binary files /dev/null and b/assets/img/flags/24/km.png differ diff --git a/assets/img/flags/24/kn.png b/assets/img/flags/24/kn.png new file mode 100644 index 000000000..9953aacfc Binary files /dev/null and b/assets/img/flags/24/kn.png differ diff --git a/assets/img/flags/24/kp.png b/assets/img/flags/24/kp.png new file mode 100644 index 000000000..4524ac691 Binary files /dev/null and b/assets/img/flags/24/kp.png differ diff --git a/assets/img/flags/24/kr.png b/assets/img/flags/24/kr.png new file mode 100644 index 000000000..321f5dc6d Binary files /dev/null and b/assets/img/flags/24/kr.png differ diff --git a/assets/img/flags/24/kw.png b/assets/img/flags/24/kw.png new file mode 100644 index 000000000..e8c7323e1 Binary files /dev/null and b/assets/img/flags/24/kw.png differ diff --git a/assets/img/flags/24/ky.png b/assets/img/flags/24/ky.png new file mode 100644 index 000000000..9c9182133 Binary files /dev/null and b/assets/img/flags/24/ky.png differ diff --git a/assets/img/flags/24/kz.png b/assets/img/flags/24/kz.png new file mode 100644 index 000000000..5a05cf273 Binary files /dev/null and b/assets/img/flags/24/kz.png differ diff --git a/assets/img/flags/24/la.png b/assets/img/flags/24/la.png new file mode 100644 index 000000000..b0ecc4d19 Binary files /dev/null and b/assets/img/flags/24/la.png differ diff --git a/assets/img/flags/24/lb.png b/assets/img/flags/24/lb.png new file mode 100644 index 000000000..000d1f750 Binary files /dev/null and b/assets/img/flags/24/lb.png differ diff --git a/assets/img/flags/24/lc.png b/assets/img/flags/24/lc.png new file mode 100644 index 000000000..52eb6d0f8 Binary files /dev/null and b/assets/img/flags/24/lc.png differ diff --git a/assets/img/flags/24/li.png b/assets/img/flags/24/li.png new file mode 100644 index 000000000..5a57cd9ce Binary files /dev/null and b/assets/img/flags/24/li.png differ diff --git a/assets/img/flags/24/lk.png b/assets/img/flags/24/lk.png new file mode 100644 index 000000000..3b4d17c1e Binary files /dev/null and b/assets/img/flags/24/lk.png differ diff --git a/assets/img/flags/24/lr.png b/assets/img/flags/24/lr.png new file mode 100644 index 000000000..302435df7 Binary files /dev/null and b/assets/img/flags/24/lr.png differ diff --git a/assets/img/flags/24/ls.png b/assets/img/flags/24/ls.png new file mode 100644 index 000000000..879dfb490 Binary files /dev/null and b/assets/img/flags/24/ls.png differ diff --git a/assets/img/flags/24/lt.png b/assets/img/flags/24/lt.png new file mode 100644 index 000000000..74ca688dd Binary files /dev/null and b/assets/img/flags/24/lt.png differ diff --git a/assets/img/flags/24/lu.png b/assets/img/flags/24/lu.png new file mode 100644 index 000000000..09cbf3179 Binary files /dev/null and b/assets/img/flags/24/lu.png differ diff --git a/assets/img/flags/24/lv.png b/assets/img/flags/24/lv.png new file mode 100644 index 000000000..d70b0f106 Binary files /dev/null and b/assets/img/flags/24/lv.png differ diff --git a/assets/img/flags/24/ly.png b/assets/img/flags/24/ly.png new file mode 100644 index 000000000..79f6aacb6 Binary files /dev/null and b/assets/img/flags/24/ly.png differ diff --git a/assets/img/flags/24/ma.png b/assets/img/flags/24/ma.png new file mode 100644 index 000000000..f5cb1990b Binary files /dev/null and b/assets/img/flags/24/ma.png differ diff --git a/assets/img/flags/24/mc.png b/assets/img/flags/24/mc.png new file mode 100644 index 000000000..704c21aeb Binary files /dev/null and b/assets/img/flags/24/mc.png differ diff --git a/assets/img/flags/24/md.png b/assets/img/flags/24/md.png new file mode 100644 index 000000000..57ca75f38 Binary files /dev/null and b/assets/img/flags/24/md.png differ diff --git a/assets/img/flags/24/me.png b/assets/img/flags/24/me.png new file mode 100644 index 000000000..435e728dc Binary files /dev/null and b/assets/img/flags/24/me.png differ diff --git a/assets/img/flags/24/mg.png b/assets/img/flags/24/mg.png new file mode 100644 index 000000000..966b068e6 Binary files /dev/null and b/assets/img/flags/24/mg.png differ diff --git a/assets/img/flags/24/mh.png b/assets/img/flags/24/mh.png new file mode 100644 index 000000000..3c0a3c9a3 Binary files /dev/null and b/assets/img/flags/24/mh.png differ diff --git a/assets/img/flags/24/mk.png b/assets/img/flags/24/mk.png new file mode 100644 index 000000000..4832f1dc6 Binary files /dev/null and b/assets/img/flags/24/mk.png differ diff --git a/assets/img/flags/24/ml.png b/assets/img/flags/24/ml.png new file mode 100644 index 000000000..27119373e Binary files /dev/null and b/assets/img/flags/24/ml.png differ diff --git a/assets/img/flags/24/mm.png b/assets/img/flags/24/mm.png new file mode 100644 index 000000000..9f56ef633 Binary files /dev/null and b/assets/img/flags/24/mm.png differ diff --git a/assets/img/flags/24/mn.png b/assets/img/flags/24/mn.png new file mode 100644 index 000000000..58b3240ef Binary files /dev/null and b/assets/img/flags/24/mn.png differ diff --git a/assets/img/flags/24/mo.png b/assets/img/flags/24/mo.png new file mode 100644 index 000000000..6248cdbd2 Binary files /dev/null and b/assets/img/flags/24/mo.png differ diff --git a/assets/img/flags/24/mq.png b/assets/img/flags/24/mq.png new file mode 100644 index 000000000..a6e45c409 Binary files /dev/null and b/assets/img/flags/24/mq.png differ diff --git a/assets/img/flags/24/mr.png b/assets/img/flags/24/mr.png new file mode 100644 index 000000000..47805d2dd Binary files /dev/null and b/assets/img/flags/24/mr.png differ diff --git a/assets/img/flags/24/ms.png b/assets/img/flags/24/ms.png new file mode 100644 index 000000000..5058884ab Binary files /dev/null and b/assets/img/flags/24/ms.png differ diff --git a/assets/img/flags/24/mt.png b/assets/img/flags/24/mt.png new file mode 100644 index 000000000..7982877f2 Binary files /dev/null and b/assets/img/flags/24/mt.png differ diff --git a/assets/img/flags/24/mu.png b/assets/img/flags/24/mu.png new file mode 100644 index 000000000..ee1f263c6 Binary files /dev/null and b/assets/img/flags/24/mu.png differ diff --git a/assets/img/flags/24/mv.png b/assets/img/flags/24/mv.png new file mode 100644 index 000000000..ee817d4a6 Binary files /dev/null and b/assets/img/flags/24/mv.png differ diff --git a/assets/img/flags/24/mw.png b/assets/img/flags/24/mw.png new file mode 100644 index 000000000..6b7e3344a Binary files /dev/null and b/assets/img/flags/24/mw.png differ diff --git a/assets/img/flags/24/mx.png b/assets/img/flags/24/mx.png new file mode 100644 index 000000000..9776632cd Binary files /dev/null and b/assets/img/flags/24/mx.png differ diff --git a/assets/img/flags/24/my.png b/assets/img/flags/24/my.png new file mode 100644 index 000000000..b303c9ae3 Binary files /dev/null and b/assets/img/flags/24/my.png differ diff --git a/assets/img/flags/24/mz.png b/assets/img/flags/24/mz.png new file mode 100644 index 000000000..b239a1c42 Binary files /dev/null and b/assets/img/flags/24/mz.png differ diff --git a/assets/img/flags/24/na.png b/assets/img/flags/24/na.png new file mode 100644 index 000000000..1fe156fde Binary files /dev/null and b/assets/img/flags/24/na.png differ diff --git a/assets/img/flags/24/nc.png b/assets/img/flags/24/nc.png new file mode 100644 index 000000000..86f95a185 Binary files /dev/null and b/assets/img/flags/24/nc.png differ diff --git a/assets/img/flags/24/ne.png b/assets/img/flags/24/ne.png new file mode 100644 index 000000000..2de314933 Binary files /dev/null and b/assets/img/flags/24/ne.png differ diff --git a/assets/img/flags/24/ng.png b/assets/img/flags/24/ng.png new file mode 100644 index 000000000..3cd82fcfa Binary files /dev/null and b/assets/img/flags/24/ng.png differ diff --git a/assets/img/flags/24/ni.png b/assets/img/flags/24/ni.png new file mode 100644 index 000000000..a5b4892c6 Binary files /dev/null and b/assets/img/flags/24/ni.png differ diff --git a/assets/img/flags/24/nl.png b/assets/img/flags/24/nl.png new file mode 100644 index 000000000..362c9f06c Binary files /dev/null and b/assets/img/flags/24/nl.png differ diff --git a/assets/img/flags/24/no.png b/assets/img/flags/24/no.png new file mode 100644 index 000000000..60939dc74 Binary files /dev/null and b/assets/img/flags/24/no.png differ diff --git a/assets/img/flags/24/np.png b/assets/img/flags/24/np.png new file mode 100644 index 000000000..f59084d34 Binary files /dev/null and b/assets/img/flags/24/np.png differ diff --git a/assets/img/flags/24/nr.png b/assets/img/flags/24/nr.png new file mode 100644 index 000000000..2531ee5c8 Binary files /dev/null and b/assets/img/flags/24/nr.png differ diff --git a/assets/img/flags/24/nz.png b/assets/img/flags/24/nz.png new file mode 100644 index 000000000..8530e0cf4 Binary files /dev/null and b/assets/img/flags/24/nz.png differ diff --git a/assets/img/flags/24/om.png b/assets/img/flags/24/om.png new file mode 100644 index 000000000..de999aab0 Binary files /dev/null and b/assets/img/flags/24/om.png differ diff --git a/assets/img/flags/24/pa.png b/assets/img/flags/24/pa.png new file mode 100644 index 000000000..987336b6f Binary files /dev/null and b/assets/img/flags/24/pa.png differ diff --git a/assets/img/flags/24/pe.png b/assets/img/flags/24/pe.png new file mode 100644 index 000000000..0c1951f77 Binary files /dev/null and b/assets/img/flags/24/pe.png differ diff --git a/assets/img/flags/24/pf.png b/assets/img/flags/24/pf.png new file mode 100644 index 000000000..ac589d633 Binary files /dev/null and b/assets/img/flags/24/pf.png differ diff --git a/assets/img/flags/24/pg.png b/assets/img/flags/24/pg.png new file mode 100644 index 000000000..f612008a9 Binary files /dev/null and b/assets/img/flags/24/pg.png differ diff --git a/assets/img/flags/24/ph.png b/assets/img/flags/24/ph.png new file mode 100644 index 000000000..96979ebf6 Binary files /dev/null and b/assets/img/flags/24/ph.png differ diff --git a/assets/img/flags/24/pk.png b/assets/img/flags/24/pk.png new file mode 100644 index 000000000..887dce54c Binary files /dev/null and b/assets/img/flags/24/pk.png differ diff --git a/assets/img/flags/24/pl.png b/assets/img/flags/24/pl.png new file mode 100644 index 000000000..cfa3f0206 Binary files /dev/null and b/assets/img/flags/24/pl.png differ diff --git a/assets/img/flags/24/pr.png b/assets/img/flags/24/pr.png new file mode 100644 index 000000000..98f18c886 Binary files /dev/null and b/assets/img/flags/24/pr.png differ diff --git a/assets/img/flags/24/ps.png b/assets/img/flags/24/ps.png new file mode 100644 index 000000000..4691919fd Binary files /dev/null and b/assets/img/flags/24/ps.png differ diff --git a/assets/img/flags/24/pt.png b/assets/img/flags/24/pt.png new file mode 100644 index 000000000..5a94de545 Binary files /dev/null and b/assets/img/flags/24/pt.png differ diff --git a/assets/img/flags/24/pw.png b/assets/img/flags/24/pw.png new file mode 100644 index 000000000..4fcda7163 Binary files /dev/null and b/assets/img/flags/24/pw.png differ diff --git a/assets/img/flags/24/py.png b/assets/img/flags/24/py.png new file mode 100644 index 000000000..e81e74629 Binary files /dev/null and b/assets/img/flags/24/py.png differ diff --git a/assets/img/flags/24/qa.png b/assets/img/flags/24/qa.png new file mode 100644 index 000000000..49a1e54fd Binary files /dev/null and b/assets/img/flags/24/qa.png differ diff --git a/assets/img/flags/24/re.png b/assets/img/flags/24/re.png new file mode 100644 index 000000000..5c8749de8 Binary files /dev/null and b/assets/img/flags/24/re.png differ diff --git a/assets/img/flags/24/ro.png b/assets/img/flags/24/ro.png new file mode 100644 index 000000000..cbffc98a6 Binary files /dev/null and b/assets/img/flags/24/ro.png differ diff --git a/assets/img/flags/24/rs.png b/assets/img/flags/24/rs.png new file mode 100644 index 000000000..6e1086c1d Binary files /dev/null and b/assets/img/flags/24/rs.png differ diff --git a/assets/img/flags/24/ru.png b/assets/img/flags/24/ru.png new file mode 100644 index 000000000..ca1a08755 Binary files /dev/null and b/assets/img/flags/24/ru.png differ diff --git a/assets/img/flags/24/rw.png b/assets/img/flags/24/rw.png new file mode 100644 index 000000000..22d96eee1 Binary files /dev/null and b/assets/img/flags/24/rw.png differ diff --git a/assets/img/flags/24/sa.png b/assets/img/flags/24/sa.png new file mode 100644 index 000000000..032bb1478 Binary files /dev/null and b/assets/img/flags/24/sa.png differ diff --git a/assets/img/flags/24/sb.png b/assets/img/flags/24/sb.png new file mode 100644 index 000000000..244a5702a Binary files /dev/null and b/assets/img/flags/24/sb.png differ diff --git a/assets/img/flags/24/sc.png b/assets/img/flags/24/sc.png new file mode 100644 index 000000000..dbface8d2 Binary files /dev/null and b/assets/img/flags/24/sc.png differ diff --git a/assets/img/flags/24/sd.png b/assets/img/flags/24/sd.png new file mode 100644 index 000000000..d9867d970 Binary files /dev/null and b/assets/img/flags/24/sd.png differ diff --git a/assets/img/flags/24/se.png b/assets/img/flags/24/se.png new file mode 100644 index 000000000..975a2e8c0 Binary files /dev/null and b/assets/img/flags/24/se.png differ diff --git a/assets/img/flags/24/sg.png b/assets/img/flags/24/sg.png new file mode 100644 index 000000000..3329013a0 Binary files /dev/null and b/assets/img/flags/24/sg.png differ diff --git a/assets/img/flags/24/si.png b/assets/img/flags/24/si.png new file mode 100644 index 000000000..9c588f289 Binary files /dev/null and b/assets/img/flags/24/si.png differ diff --git a/assets/img/flags/24/sk.png b/assets/img/flags/24/sk.png new file mode 100644 index 000000000..291e60527 Binary files /dev/null and b/assets/img/flags/24/sk.png differ diff --git a/assets/img/flags/24/sl.png b/assets/img/flags/24/sl.png new file mode 100644 index 000000000..d0a6a7b67 Binary files /dev/null and b/assets/img/flags/24/sl.png differ diff --git a/assets/img/flags/24/sm.png b/assets/img/flags/24/sm.png new file mode 100644 index 000000000..b93ac3dd2 Binary files /dev/null and b/assets/img/flags/24/sm.png differ diff --git a/assets/img/flags/24/sn.png b/assets/img/flags/24/sn.png new file mode 100644 index 000000000..b713c4df3 Binary files /dev/null and b/assets/img/flags/24/sn.png differ diff --git a/assets/img/flags/24/so.png b/assets/img/flags/24/so.png new file mode 100644 index 000000000..4bbb46646 Binary files /dev/null and b/assets/img/flags/24/so.png differ diff --git a/assets/img/flags/24/sr.png b/assets/img/flags/24/sr.png new file mode 100644 index 000000000..5f18df099 Binary files /dev/null and b/assets/img/flags/24/sr.png differ diff --git a/assets/img/flags/24/st.png b/assets/img/flags/24/st.png new file mode 100644 index 000000000..c6bac56ac Binary files /dev/null and b/assets/img/flags/24/st.png differ diff --git a/assets/img/flags/24/sv.png b/assets/img/flags/24/sv.png new file mode 100644 index 000000000..e03b7bf41 Binary files /dev/null and b/assets/img/flags/24/sv.png differ diff --git a/assets/img/flags/24/sy.png b/assets/img/flags/24/sy.png new file mode 100644 index 000000000..2f270817f Binary files /dev/null and b/assets/img/flags/24/sy.png differ diff --git a/assets/img/flags/24/sz.png b/assets/img/flags/24/sz.png new file mode 100644 index 000000000..ca3a13953 Binary files /dev/null and b/assets/img/flags/24/sz.png differ diff --git a/assets/img/flags/24/tc.png b/assets/img/flags/24/tc.png new file mode 100644 index 000000000..efe267dc3 Binary files /dev/null and b/assets/img/flags/24/tc.png differ diff --git a/assets/img/flags/24/td.png b/assets/img/flags/24/td.png new file mode 100644 index 000000000..b4904f9a6 Binary files /dev/null and b/assets/img/flags/24/td.png differ diff --git a/assets/img/flags/24/tg.png b/assets/img/flags/24/tg.png new file mode 100644 index 000000000..98e7c3821 Binary files /dev/null and b/assets/img/flags/24/tg.png differ diff --git a/assets/img/flags/24/th.png b/assets/img/flags/24/th.png new file mode 100644 index 000000000..f28262828 Binary files /dev/null and b/assets/img/flags/24/th.png differ diff --git a/assets/img/flags/24/tj.png b/assets/img/flags/24/tj.png new file mode 100644 index 000000000..dde2aef83 Binary files /dev/null and b/assets/img/flags/24/tj.png differ diff --git a/assets/img/flags/24/tl.png b/assets/img/flags/24/tl.png new file mode 100644 index 000000000..d8c0469d4 Binary files /dev/null and b/assets/img/flags/24/tl.png differ diff --git a/assets/img/flags/24/tm.png b/assets/img/flags/24/tm.png new file mode 100644 index 000000000..7f07f1fd5 Binary files /dev/null and b/assets/img/flags/24/tm.png differ diff --git a/assets/img/flags/24/tn.png b/assets/img/flags/24/tn.png new file mode 100644 index 000000000..4936cdf4c Binary files /dev/null and b/assets/img/flags/24/tn.png differ diff --git a/assets/img/flags/24/to.png b/assets/img/flags/24/to.png new file mode 100644 index 000000000..7ac1ab428 Binary files /dev/null and b/assets/img/flags/24/to.png differ diff --git a/assets/img/flags/24/tr.png b/assets/img/flags/24/tr.png new file mode 100644 index 000000000..da41737d5 Binary files /dev/null and b/assets/img/flags/24/tr.png differ diff --git a/assets/img/flags/24/tt.png b/assets/img/flags/24/tt.png new file mode 100644 index 000000000..a30ccb440 Binary files /dev/null and b/assets/img/flags/24/tt.png differ diff --git a/assets/img/flags/24/tv.png b/assets/img/flags/24/tv.png new file mode 100644 index 000000000..5b1360849 Binary files /dev/null and b/assets/img/flags/24/tv.png differ diff --git a/assets/img/flags/24/tw.png b/assets/img/flags/24/tw.png new file mode 100644 index 000000000..faa796c05 Binary files /dev/null and b/assets/img/flags/24/tw.png differ diff --git a/assets/img/flags/24/tz.png b/assets/img/flags/24/tz.png new file mode 100644 index 000000000..3fb8b23d8 Binary files /dev/null and b/assets/img/flags/24/tz.png differ diff --git a/assets/img/flags/24/ua.png b/assets/img/flags/24/ua.png new file mode 100644 index 000000000..f6a492aae Binary files /dev/null and b/assets/img/flags/24/ua.png differ diff --git a/assets/img/flags/24/ug.png b/assets/img/flags/24/ug.png new file mode 100644 index 000000000..f2e1ae727 Binary files /dev/null and b/assets/img/flags/24/ug.png differ diff --git a/assets/img/flags/24/us.png b/assets/img/flags/24/us.png new file mode 100644 index 000000000..f9337dc5d Binary files /dev/null and b/assets/img/flags/24/us.png differ diff --git a/assets/img/flags/24/uy.png b/assets/img/flags/24/uy.png new file mode 100644 index 000000000..a8faab23c Binary files /dev/null and b/assets/img/flags/24/uy.png differ diff --git a/assets/img/flags/24/uz.png b/assets/img/flags/24/uz.png new file mode 100644 index 000000000..b4af75022 Binary files /dev/null and b/assets/img/flags/24/uz.png differ diff --git a/assets/img/flags/24/va.png b/assets/img/flags/24/va.png new file mode 100644 index 000000000..67e74ca79 Binary files /dev/null and b/assets/img/flags/24/va.png differ diff --git a/assets/img/flags/24/vc.png b/assets/img/flags/24/vc.png new file mode 100644 index 000000000..cb96a6725 Binary files /dev/null and b/assets/img/flags/24/vc.png differ diff --git a/assets/img/flags/24/ve.png b/assets/img/flags/24/ve.png new file mode 100644 index 000000000..9e0547a84 Binary files /dev/null and b/assets/img/flags/24/ve.png differ diff --git a/assets/img/flags/24/vg.png b/assets/img/flags/24/vg.png new file mode 100644 index 000000000..c77696db3 Binary files /dev/null and b/assets/img/flags/24/vg.png differ diff --git a/assets/img/flags/24/vi.png b/assets/img/flags/24/vi.png new file mode 100644 index 000000000..afbef9458 Binary files /dev/null and b/assets/img/flags/24/vi.png differ diff --git a/assets/img/flags/24/vn.png b/assets/img/flags/24/vn.png new file mode 100644 index 000000000..1090f2bc8 Binary files /dev/null and b/assets/img/flags/24/vn.png differ diff --git a/assets/img/flags/24/vu.png b/assets/img/flags/24/vu.png new file mode 100644 index 000000000..cfbe75a97 Binary files /dev/null and b/assets/img/flags/24/vu.png differ diff --git a/assets/img/flags/24/w3.png b/assets/img/flags/24/w3.png new file mode 100644 index 000000000..fdabdb662 Binary files /dev/null and b/assets/img/flags/24/w3.png differ diff --git a/assets/img/flags/24/ws.png b/assets/img/flags/24/ws.png new file mode 100644 index 000000000..a71a58549 Binary files /dev/null and b/assets/img/flags/24/ws.png differ diff --git a/assets/img/flags/24/ye.png b/assets/img/flags/24/ye.png new file mode 100644 index 000000000..4a86685e0 Binary files /dev/null and b/assets/img/flags/24/ye.png differ diff --git a/assets/img/flags/24/za.png b/assets/img/flags/24/za.png new file mode 100644 index 000000000..10ee332a1 Binary files /dev/null and b/assets/img/flags/24/za.png differ diff --git a/assets/img/flags/24/zm.png b/assets/img/flags/24/zm.png new file mode 100644 index 000000000..a93f81b76 Binary files /dev/null and b/assets/img/flags/24/zm.png differ diff --git a/assets/img/flags/24/zw.png b/assets/img/flags/24/zw.png new file mode 100644 index 000000000..8bbd802ed Binary files /dev/null and b/assets/img/flags/24/zw.png differ diff --git a/assets/img/hpc-carpentry-large.png b/assets/img/hpc-carpentry-large.png new file mode 100644 index 000000000..427d108a4 Binary files /dev/null and b/assets/img/hpc-carpentry-large.png differ diff --git a/assets/img/hpc-carpentry-vertical.png b/assets/img/hpc-carpentry-vertical.png new file mode 100644 index 000000000..e20c68778 Binary files /dev/null and b/assets/img/hpc-carpentry-vertical.png differ diff --git a/assets/img/hpc-carpentry.png b/assets/img/hpc-carpentry.png new file mode 100644 index 000000000..816afe8fa Binary files /dev/null and b/assets/img/hpc-carpentry.png differ diff --git a/assets/img/hpc-carpentry.svg b/assets/img/hpc-carpentry.svg new file mode 100644 index 000000000..1edd041e9 --- /dev/null +++ b/assets/img/hpc-carpentry.svg @@ -0,0 +1,372 @@ + + + +image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/img/logo.png b/assets/img/logo.png new file mode 100644 index 000000000..998a3c937 Binary files /dev/null and b/assets/img/logo.png differ diff --git a/assets/img/logos/cp-unknown.svg b/assets/img/logos/cp-unknown.svg new file mode 100644 index 000000000..29d622e24 --- /dev/null +++ b/assets/img/logos/cp-unknown.svg @@ -0,0 +1,82 @@ + + + + + + image/svg+xml + + + + + + + + + + + + ? + diff --git a/assets/img/logos/cp.svg b/assets/img/logos/cp.svg new file mode 100644 index 000000000..da70d40ee --- /dev/null +++ b/assets/img/logos/cp.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/assets/img/logos/dc.png b/assets/img/logos/dc.png new file mode 100644 index 000000000..b21ac3f78 Binary files /dev/null and b/assets/img/logos/dc.png differ diff --git a/assets/img/logos/dc.svg b/assets/img/logos/dc.svg new file mode 100644 index 000000000..7359de290 --- /dev/null +++ b/assets/img/logos/dc.svg @@ -0,0 +1,61 @@ + + + + + + + + image/svg+xml + + + + + + + + diff --git a/assets/img/logos/hpc.svg b/assets/img/logos/hpc.svg new file mode 100644 index 000000000..379d9e2cb --- /dev/null +++ b/assets/img/logos/hpc.svg @@ -0,0 +1,319 @@ + + + +image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/img/logos/lc.png b/assets/img/logos/lc.png new file mode 100644 index 000000000..eae2c9060 Binary files /dev/null and b/assets/img/logos/lc.png differ diff --git a/assets/img/logos/lc.svg b/assets/img/logos/lc.svg new file mode 100644 index 000000000..5e0bdd6a0 --- /dev/null +++ b/assets/img/logos/lc.svg @@ -0,0 +1,61 @@ + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/assets/img/logos/swc.png b/assets/img/logos/swc.png new file mode 100644 index 000000000..a647ac6df Binary files /dev/null and b/assets/img/logos/swc.png differ diff --git a/assets/img/logos/swc.svg b/assets/img/logos/swc.svg new file mode 100644 index 000000000..7d9e21ba9 --- /dev/null +++ b/assets/img/logos/swc.svg @@ -0,0 +1,66 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/assets/img/mstile-150x150.png b/assets/img/mstile-150x150.png new file mode 100644 index 000000000..4e62a39b5 Binary files /dev/null and b/assets/img/mstile-150x150.png differ diff --git a/assets/img/safari-pinned-tab.svg b/assets/img/safari-pinned-tab.svg new file mode 100644 index 000000000..4ca923197 --- /dev/null +++ b/assets/img/safari-pinned-tab.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + diff --git a/assets/img/site.webmanifest b/assets/img/site.webmanifest new file mode 100644 index 000000000..92a52e2e5 --- /dev/null +++ b/assets/img/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "The Carpentries", + "short_name": "The Carpentries", + "icons": [ + { + "src": "/assets/img/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/assets/img/android-chrome-384x384.png", + "sizes": "384x384", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/assets/js/javascript.js b/assets/js/javascript.js new file mode 100755 index 000000000..9146e3536 --- /dev/null +++ b/assets/js/javascript.js @@ -0,0 +1,3349 @@ +/*! + * jQuery JavaScript Library v2.1.1 + * http://jquery.com/ + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * + * Copyright 2005, 2014 jQuery Foundation, Inc. and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2014-05-01T17:11Z + */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){function c(a){var b=a.length,c=_.type(a);return"function"===c||_.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}function d(a,b,c){if(_.isFunction(b))return _.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return _.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(hb.test(b))return _.filter(b,a,c);b=_.filter(b,a)}return _.grep(a,function(a){return U.call(b,a)>=0!==c})}function e(a,b){for(;(a=a[b])&&1!==a.nodeType;);return a}function f(a){var b=ob[a]={};return _.each(a.match(nb)||[],function(a,c){b[c]=!0}),b}function g(){Z.removeEventListener("DOMContentLoaded",g,!1),a.removeEventListener("load",g,!1),_.ready()}function h(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=_.expando+Math.random()}function i(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(ub,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:tb.test(c)?_.parseJSON(c):c}catch(e){}sb.set(a,b,c)}else c=void 0;return c}function j(){return!0}function k(){return!1}function l(){try{return Z.activeElement}catch(a){}}function m(a,b){return _.nodeName(a,"table")&&_.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function n(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function o(a){var b=Kb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function p(a,b){for(var c=0,d=a.length;d>c;c++)rb.set(a[c],"globalEval",!b||rb.get(b[c],"globalEval"))}function q(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(rb.hasData(a)&&(f=rb.access(a),g=rb.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)_.event.add(b,e,j[e][c])}sb.hasData(a)&&(h=sb.access(a),i=_.extend({},h),sb.set(b,i))}}function r(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&_.nodeName(a,b)?_.merge([a],c):c}function s(a,b){var c=b.nodeName.toLowerCase();"input"===c&&yb.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}function t(b,c){var d,e=_(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:_.css(e[0],"display");return e.detach(),f}function u(a){var b=Z,c=Ob[a];return c||(c=t(a,b),"none"!==c&&c||(Nb=(Nb||_("'; + if (typeof($f) == 'function') { // froogaloop available + var player = $f(container.childNodes[0]); + + player.addEvent('ready', function() { + + player.playVideo = function() { + player.api( 'play' ); + } + player.stopVideo = function() { + player.api( 'unload' ); + } + player.pauseVideo = function() { + player.api( 'pause' ); + } + player.seekTo = function( seconds ) { + player.api( 'seekTo', seconds ); + } + player.setVolume = function( volume ) { + player.api( 'setVolume', volume ); + } + player.setMuted = function( muted ) { + if( muted ) { + player.lastVolume = player.api( 'getVolume' ); + player.api( 'setVolume', 0 ); + } else { + player.api( 'setVolume', player.lastVolume ); + delete player.lastVolume; + } + } + + function createEvent(player, pluginMediaElement, eventName, e) { + var event = { + type: eventName, + target: pluginMediaElement + }; + if (eventName == 'timeupdate') { + pluginMediaElement.currentTime = event.currentTime = e.seconds; + pluginMediaElement.duration = event.duration = e.duration; + } + pluginMediaElement.dispatchEvent(event); + } + + player.addEvent('play', function() { + createEvent(player, pluginMediaElement, 'play'); + createEvent(player, pluginMediaElement, 'playing'); + }); + + player.addEvent('pause', function() { + createEvent(player, pluginMediaElement, 'pause'); + }); + + player.addEvent('finish', function() { + createEvent(player, pluginMediaElement, 'ended'); + }); + + player.addEvent('playProgress', function(e) { + createEvent(player, pluginMediaElement, 'timeupdate', e); + }); + + pluginMediaElement.pluginElement = container; + pluginMediaElement.pluginApi = player; + + // init mejs + mejs.MediaPluginBridge.initPlugin(pluginid); + }); + } + else { + console.warn("You need to include froogaloop for vimeo to work"); + } + break; + } + // hide original element + htmlMediaElement.style.display = 'none'; + // prevent browser from autoplaying when using a plugin + htmlMediaElement.removeAttribute('autoplay'); + + // FYI: options.success will be fired by the MediaPluginBridge + + return pluginMediaElement; + }, + + updateNative: function(playback, options, autoplay, preload) { + + var htmlMediaElement = playback.htmlMediaElement, + m; + + + // add methods to video object to bring it into parity with Flash Object + for (m in mejs.HtmlMediaElement) { + htmlMediaElement[m] = mejs.HtmlMediaElement[m]; + } + + /* + Chrome now supports preload="none" + if (mejs.MediaFeatures.isChrome) { + + // special case to enforce preload attribute (Chrome doesn't respect this) + if (preload === 'none' && !autoplay) { + + // forces the browser to stop loading (note: fails in IE9) + htmlMediaElement.src = ''; + htmlMediaElement.load(); + htmlMediaElement.canceledPreload = true; + + htmlMediaElement.addEventListener('play',function() { + if (htmlMediaElement.canceledPreload) { + htmlMediaElement.src = playback.url; + htmlMediaElement.load(); + htmlMediaElement.play(); + htmlMediaElement.canceledPreload = false; + } + }, false); + // for some reason Chrome forgets how to autoplay sometimes. + } else if (autoplay) { + htmlMediaElement.load(); + htmlMediaElement.play(); + } + } + */ + + // fire success code + options.success(htmlMediaElement, htmlMediaElement); + + return htmlMediaElement; + } +}; + +/* + - test on IE (object vs. embed) + - determine when to use iframe (Firefox, Safari, Mobile) vs. Flash (Chrome, IE) + - fullscreen? +*/ + +// YouTube Flash and Iframe API +mejs.YouTubeApi = { + isIframeStarted: false, + isIframeLoaded: false, + loadIframeApi: function() { + if (!this.isIframeStarted) { + var tag = document.createElement('script'); + tag.src = "//www.youtube.com/player_api"; + var firstScriptTag = document.getElementsByTagName('script')[0]; + firstScriptTag.parentNode.insertBefore(tag, firstScriptTag); + this.isIframeStarted = true; + } + }, + iframeQueue: [], + enqueueIframe: function(yt) { + + if (this.isLoaded) { + this.createIframe(yt); + } else { + this.loadIframeApi(); + this.iframeQueue.push(yt); + } + }, + createIframe: function(settings) { + + var + pluginMediaElement = settings.pluginMediaElement, + player = new YT.Player(settings.containerId, { + height: settings.height, + width: settings.width, + videoId: settings.videoId, + playerVars: {controls:0}, + events: { + 'onReady': function() { + + // hook up iframe object to MEjs + settings.pluginMediaElement.pluginApi = player; + + // init mejs + mejs.MediaPluginBridge.initPlugin(settings.pluginId); + + // create timer + setInterval(function() { + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'timeupdate'); + }, 250); + }, + 'onStateChange': function(e) { + + mejs.YouTubeApi.handleStateChange(e.data, player, pluginMediaElement); + + } + } + }); + }, + + createEvent: function (player, pluginMediaElement, eventName) { + var event = { + type: eventName, + target: pluginMediaElement + }; + + if (player && player.getDuration) { + + // time + pluginMediaElement.currentTime = event.currentTime = player.getCurrentTime(); + pluginMediaElement.duration = event.duration = player.getDuration(); + + // state + event.paused = pluginMediaElement.paused; + event.ended = pluginMediaElement.ended; + + // sound + event.muted = player.isMuted(); + event.volume = player.getVolume() / 100; + + // progress + event.bytesTotal = player.getVideoBytesTotal(); + event.bufferedBytes = player.getVideoBytesLoaded(); + + // fake the W3C buffered TimeRange + var bufferedTime = event.bufferedBytes / event.bytesTotal * event.duration; + + event.target.buffered = event.buffered = { + start: function(index) { + return 0; + }, + end: function (index) { + return bufferedTime; + }, + length: 1 + }; + + } + + // send event up the chain + pluginMediaElement.dispatchEvent(event); + }, + + iFrameReady: function() { + + this.isLoaded = true; + this.isIframeLoaded = true; + + while (this.iframeQueue.length > 0) { + var settings = this.iframeQueue.pop(); + this.createIframe(settings); + } + }, + + // FLASH! + flashPlayers: {}, + createFlash: function(settings) { + + this.flashPlayers[settings.pluginId] = settings; + + /* + settings.container.innerHTML = + '' + + '' + + '' + + ''; + */ + + var specialIEContainer, + youtubeUrl = '//www.youtube.com/apiplayer?enablejsapi=1&playerapiid=' + settings.pluginId + '&version=3&autoplay=0&controls=0&modestbranding=1&loop=0'; + + if (mejs.MediaFeatures.isIE) { + + specialIEContainer = document.createElement('div'); + settings.container.appendChild(specialIEContainer); + specialIEContainer.outerHTML = '' + + '' + + '' + + '' + + '' + +''; + } else { + settings.container.innerHTML = + '' + + '' + + '' + + ''; + } + + }, + + flashReady: function(id) { + var + settings = this.flashPlayers[id], + player = document.getElementById(id), + pluginMediaElement = settings.pluginMediaElement; + + // hook up and return to MediaELementPlayer.success + pluginMediaElement.pluginApi = + pluginMediaElement.pluginElement = player; + mejs.MediaPluginBridge.initPlugin(id); + + // load the youtube video + player.cueVideoById(settings.videoId); + + var callbackName = settings.containerId + '_callback'; + + window[callbackName] = function(e) { + mejs.YouTubeApi.handleStateChange(e, player, pluginMediaElement); + } + + player.addEventListener('onStateChange', callbackName); + + setInterval(function() { + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'timeupdate'); + }, 250); + + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'canplay'); + }, + + handleStateChange: function(youTubeState, player, pluginMediaElement) { + switch (youTubeState) { + case -1: // not started + pluginMediaElement.paused = true; + pluginMediaElement.ended = true; + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'loadedmetadata'); + //createYouTubeEvent(player, pluginMediaElement, 'loadeddata'); + break; + case 0: + pluginMediaElement.paused = false; + pluginMediaElement.ended = true; + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'ended'); + break; + case 1: + pluginMediaElement.paused = false; + pluginMediaElement.ended = false; + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'play'); + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'playing'); + break; + case 2: + pluginMediaElement.paused = true; + pluginMediaElement.ended = false; + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'pause'); + break; + case 3: // buffering + mejs.YouTubeApi.createEvent(player, pluginMediaElement, 'progress'); + break; + case 5: + // cued? + break; + + } + + } +} +// IFRAME +window.onYouTubePlayerAPIReady = function() { + mejs.YouTubeApi.iFrameReady(); +}; +// FLASH +window.onYouTubePlayerReady = function(id) { + mejs.YouTubeApi.flashReady(id); +}; + +window.mejs = mejs; +window.MediaElement = mejs.MediaElement; + +/* + * Adds Internationalization and localization to mediaelement. + * + * This file does not contain translations, you have to add them manually. + * The schema is always the same: me-i18n-locale-[IETF-language-tag].js + * + * Examples are provided both for german and chinese translation. + * + * + * What is the concept beyond i18n? + * http://en.wikipedia.org/wiki/Internationalization_and_localization + * + * What langcode should i use? + * http://en.wikipedia.org/wiki/IETF_language_tag + * https://tools.ietf.org/html/rfc5646 + * + * + * License? + * + * The i18n file uses methods from the Drupal project (drupal.js): + * - i18n.methods.t() (modified) + * - i18n.methods.checkPlain() (full copy) + * + * The Drupal project is (like mediaelementjs) licensed under GPLv2. + * - http://drupal.org/licensing/faq/#q1 + * - https://github.com/johndyer/mediaelement + * - http://www.gnu.org/licenses/old-licenses/gpl-2.0.html + * + * + * @author + * Tim Latz (latz.tim@gmail.com) + * + * + * @params + * - context - document, iframe .. + * - exports - CommonJS, window .. + * + */ +;(function(context, exports, undefined) { + "use strict"; + + var i18n = { + "locale": { + // Ensure previous values aren't overwritten. + "language" : (exports.i18n && exports.i18n.locale.language) || '', + "strings" : (exports.i18n && exports.i18n.locale.strings) || {} + }, + "ietf_lang_regex" : /^(x\-)?[a-z]{2,}(\-\w{2,})?(\-\w{2,})?$/, + "methods" : {} + }; +// start i18n + + + /** + * Get language, fallback to browser's language if empty + * + * IETF: RFC 5646, https://tools.ietf.org/html/rfc5646 + * Examples: en, zh-CN, cmn-Hans-CN, sr-Latn-RS, es-419, x-private + */ + i18n.getLanguage = function () { + var language = i18n.locale.language || window.navigator.userLanguage || window.navigator.language; + return i18n.ietf_lang_regex.exec(language) ? language : null; + + //(WAS: convert to iso 639-1 (2-letters, lower case)) + //return language.substr(0, 2).toLowerCase(); + }; + + // i18n fixes for compatibility with WordPress + if ( typeof mejsL10n != 'undefined' ) { + i18n.locale.language = mejsL10n.language; + } + + + + /** + * Encode special characters in a plain-text string for display as HTML. + */ + i18n.methods.checkPlain = function (str) { + var character, regex, + replace = { + '&': '&', + '"': '"', + '<': '<', + '>': '>' + }; + str = String(str); + for (character in replace) { + if (replace.hasOwnProperty(character)) { + regex = new RegExp(character, 'g'); + str = str.replace(regex, replace[character]); + } + } + return str; + }; + + /** + * Translate strings to the page language or a given language. + * + * + * @param str + * A string containing the English string to translate. + * + * @param options + * - 'context' (defaults to the default context): The context the source string + * belongs to. + * + * @return + * The translated string, escaped via i18n.methods.checkPlain() + */ + i18n.methods.t = function (str, options) { + + // Fetch the localized version of the string. + if (i18n.locale.strings && i18n.locale.strings[options.context] && i18n.locale.strings[options.context][str]) { + str = i18n.locale.strings[options.context][str]; + } + + return i18n.methods.checkPlain(str); + }; + + + /** + * Wrapper for i18n.methods.t() + * + * @see i18n.methods.t() + * @throws InvalidArgumentException + */ + i18n.t = function(str, options) { + + if (typeof str === 'string' && str.length > 0) { + + // check every time due language can change for + // different reasons (translation, lang switcher ..) + var language = i18n.getLanguage(); + + options = options || { + "context" : language + }; + + return i18n.methods.t(str, options); + } + else { + throw { + "name" : 'InvalidArgumentException', + "message" : 'First argument is either not a string or empty.' + }; + } + }; + +// end i18n + exports.i18n = i18n; +}(document, mejs)); + +// i18n fixes for compatibility with WordPress +;(function(exports, undefined) { + + "use strict"; + + if ( typeof mejsL10n != 'undefined' ) { + exports[mejsL10n.language] = mejsL10n.strings; + } + +}(mejs.i18n.locale.strings)); + +/*! + * + * MediaElementPlayer + * http://mediaelementjs.com/ + * + * Creates a controller bar for HTML5