├── appengine ├── .gitignore ├── app.yaml ├── README.md ├── .gcloudignore └── main.go ├── .gitignore ├── static └── favicon.ico ├── layouts ├── 404.html ├── partials │ ├── css.html │ └── icon.html ├── _default │ └── _markup │ │ └── render-link.html ├── index.html └── baseof.html ├── config.toml ├── data └── buildinfo.json ├── .github ├── dependabot.yml ├── ISSUE_TEMPLATE │ └── proxy-url.yml └── workflows │ └── build-deploy.yaml ├── assets ├── css │ ├── style.css │ └── simple.css └── favicon.svg ├── README.md ├── content └── _index.md └── LICENSE /appengine/.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | *.pyc 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /public/ 2 | /resources/ 3 | /.hugo_build.lock 4 | -------------------------------------------------------------------------------- /appengine/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: go116 2 | 3 | handlers: 4 | - url: /.* 5 | script: auto 6 | -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tom5760/ezproxy-db/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 |

404: Page not found.

3 | 4 |

Home.

5 | {{ end }} 6 | -------------------------------------------------------------------------------- /appengine/README.md: -------------------------------------------------------------------------------- 1 | Google App Engine App 2 | ===================== 3 | 4 | This just serves to redirect and proxy requests over to the new URL. 5 | -------------------------------------------------------------------------------- /layouts/partials/css.html: -------------------------------------------------------------------------------- 1 | {{- $style := resources.Get . | resources.Fingerprint -}} 2 | 3 | 6 | -------------------------------------------------------------------------------- /layouts/partials/icon.html: -------------------------------------------------------------------------------- 1 | {{- $style := resources.Get . | resources.Fingerprint -}} 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- 1 | baseURL = 'https://libproxy-db.org/' 2 | languageCode = 'en-us' 3 | title = 'Library Proxy URL Database' 4 | 5 | enableRobotsTXT = true 6 | 7 | disableKinds = ["taxonomy", "term", "RSS", "sitemap"] 8 | -------------------------------------------------------------------------------- /data/buildinfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildstamp": "2022-01-01T00:00:00+00:00", 3 | "commitstamp": "2022-01-01T00:00:00+00:00", 4 | "ref": "HEAD", 5 | "shortref": "HEAD", 6 | "action_id": "0", 7 | "action_url": "https://github.com/tom5760/ezproxy-db/actions" 8 | } 9 | -------------------------------------------------------------------------------- /layouts/_default/_markup/render-link.html: -------------------------------------------------------------------------------- 1 | {{ .Text | safeHTML }} 2 | {{- /* This comment removes trailing newlines. */ -}} 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # Please see the documentation for all configuration options: 2 | # https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference 3 | 4 | version: 2 5 | updates: 6 | - package-ecosystem: github-actions 7 | directory: / 8 | schedule: 9 | interval: daily 10 | -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | /* Add a few more columns, so our table can be bigger, but not take up the 3 | * full page width. */ 4 | grid-template-columns: 5 | 1fr 1fr min(45rem, 90%) 1fr 1fr; 6 | } 7 | 8 | body>* { 9 | /* Re-center body content. */ 10 | grid-column: 3; 11 | } 12 | 13 | .db-table { 14 | grid-column: 2 / 5; 15 | 16 | margin: 0; 17 | } 18 | -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- 1 | {{ define "body" }} 2 | {{- $db := readFile "static/proxies.json" | transform.Unmarshal }} 3 | 4 |
5 | {{ .Content }} 6 | 7 |

{{ len $db }} Proxies

8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | {{- range sort $db "name" }} 19 | 20 | 21 | 22 | 23 | {{- end -}} 24 | 25 |
NameURL
{{ .name }}{{ .url }}
26 | {{ end }} 27 | -------------------------------------------------------------------------------- /appengine/.gcloudignore: -------------------------------------------------------------------------------- 1 | # This file specifies files that are *not* uploaded to Google Cloud 2 | # using gcloud. It follows the same syntax as .gitignore, with the addition of 3 | # "#!include" directives (which insert the entries of the given .gitignore-style 4 | # file at that point). 5 | # 6 | # For more information, run: 7 | # $ gcloud topic gcloudignore 8 | # 9 | .gcloudignore 10 | # If you would like to upload your .git directory, .gitignore file or files 11 | # from your .gitignore file, remove the corresponding line 12 | # below: 13 | .git 14 | .gitignore 15 | 16 | # Binaries for programs and plugins 17 | *.exe 18 | *.exe~ 19 | *.dll 20 | *.so 21 | *.dylib 22 | # Test binary, build with `go test -c` 23 | *.test 24 | # Output of the go coverage tool, specifically when used with LiteIDE 25 | *.out -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/proxy-url.yml: -------------------------------------------------------------------------------- 1 | name: New/Updated Proxy URL 2 | description: Submit a new or updated proxy URL to the database. 3 | body: 4 | - id: institution 5 | type: input 6 | attributes: 7 | label: Name 8 | description: The name of the school or institution the proxy URL is for. 9 | placeholder: Name 10 | validations: 11 | required: true 12 | 13 | - id: url 14 | type: input 15 | attributes: 16 | label: URL 17 | description: > 18 | The proxy URL. The URL *MUST* include `$@`, to signal where the 19 | proxied URL should go. For example: 20 | `http://www.library.drexel.edu/cgi-bin/r.cgi?url=$@` 21 | placeholder: http://www.library.drexel.edu/cgi-bin/r.cgi?url=$@ 22 | validations: 23 | required: true 24 | 25 | - id: country 26 | type: input 27 | attributes: 28 | label: Country 29 | description: The country where this institution is mainly located. 30 | placeholder: Country 31 | -------------------------------------------------------------------------------- /layouts/baseof.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Library Proxy URL Database 9 | 10 | {{ partial "icon.html" "favicon.svg" }} 11 | 12 | {{ partial "css.html" "css/simple.css" }} 13 | {{ partial "css.html" "css/style.css" }} 14 | 15 | 16 | 17 |
18 |

Library Proxy URL Database

19 | 20 | {{ .Summary }} 21 |
22 | 23 | {{ block "body" . }} 24 |
25 | {{ block "main" . }}{{ end }} 26 |
27 | {{ end }} 28 | 29 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Library Proxy URL Database 2 | ========================== 3 | 4 | * Author: Tom Wambold 5 | * Copyright © 2022 Tom Wambold 6 | * URL: https://libproxy-db.org/ 7 | 8 | Collection of proxy URLs from various libraries and institutions using 9 | software, like [EZproxy][ezproxy]. Can be used with the [Google Chrome 10 | Extension][chrome] or [Mozilla Firefox Extension][firefox]. 11 | 12 | [ezproxy]: https://en.wikipedia.org/wiki/EZproxy 13 | [chrome]: https://chromewebstore.google.com/detail/ezproxy-redirect/gfhnhcbpnnnlefhobdnmhenofhfnnfhi 14 | [firefox]: https://addons.mozilla.org/addon/firefox-ezproxy-redirect/ 15 | 16 | This database is also accessible in [JSON format][json]. Also, the code for 17 | the [browser extensions][github-browser] is available on GitHub. 18 | 19 | [json]: https://github.com/tom5760/ezproxy-db/blob/main/static/proxies.json 20 | [github-browser]: https://github.com/tom5760/chrome-ezproxy 21 | 22 | ## Contributing 23 | 24 | To contribute your institution's proxy URL, or to update an existing entry, 25 | [edit the database and create a pull request][pr]. Any questions or comments 26 | can be posted [on the discussions board][board]. 27 | 28 | [pr]: https://github.com/tom5760/ezproxy-db/edit/main/static/proxies.json 29 | [board]: https://github.com/tom5760/ezproxy-db/discussions 30 | 31 | ## What Changed? 32 | 33 | This used to be a Python app hosted on Google App Engine. The code for that is 34 | available on the [`appengine` branch][appengine]. I decided to simplify this 35 | and just generate a static site with [Hugo][hugo]. The database is also just a 36 | [single static JSON file][json]. This makes the site super-easy to host 37 | anywhere, and can be served quickly. 38 | 39 | [appengine]: https://github.com/tom5760/ezproxy-db/tree/appengine 40 | [hugo]: https://gohugo.io/ 41 | 42 | Also, will be easier to use GitHub's collaboration features to track and vet 43 | changes to the database and add co-maintainers, without having to implement 44 | that with code. Users can use [GitHub's built-in editor][pr] to edit the 45 | database and submit a pull request, without using Git directly. 46 | -------------------------------------------------------------------------------- /appengine/main.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "fmt" 5 | "io" 6 | "log" 7 | "net/http" 8 | "os" 9 | ) 10 | 11 | const ( 12 | serverHost = "libproxy-db.org" 13 | proxyURL = "https://libproxy-db.org/proxies.json" 14 | 15 | headerAccessControlAllowOrigin = "Access-Control-Allow-Origin" 16 | 17 | accessControlAllowOriginAll = "*" 18 | ) 19 | 20 | func main() { 21 | if err := run(); err != nil { 22 | log.Println(err) 23 | os.Exit(1) 24 | } 25 | } 26 | 27 | func run() error { 28 | port := os.Getenv("PORT") 29 | 30 | if port == "" { 31 | port = "8080" 32 | } 33 | 34 | // Set up a specific handler for GET requests for proxies.json. The browser 35 | // extensions won't allow a redirect to a host that isn't in their security 36 | // policy, so until they are updated, we need to proxy it here. 37 | http.HandleFunc("/proxies.json", proxyHandler) 38 | 39 | http.HandleFunc("/", rootHandler) 40 | 41 | log.Println("listening on port", port) 42 | 43 | if err := http.ListenAndServe(":"+port, nil); err != nil { 44 | return fmt.Errorf("failed to listen and serve: %w", err) 45 | } 46 | 47 | return nil 48 | } 49 | 50 | func rootHandler(w http.ResponseWriter, r *http.Request) { 51 | rurl := *r.URL 52 | rurl.Scheme = "https" 53 | rurl.Host = serverHost 54 | 55 | http.Redirect(w, r, rurl.String(), http.StatusMovedPermanently) 56 | } 57 | 58 | func proxyHandler(w http.ResponseWriter, r *http.Request) { 59 | w.Header().Set(headerAccessControlAllowOrigin, accessControlAllowOriginAll) 60 | 61 | if r.Method == http.MethodHead { 62 | w.WriteHeader(http.StatusOK) 63 | return 64 | } 65 | 66 | pr, err := http.NewRequestWithContext(r.Context(), http.MethodGet, proxyURL, nil) 67 | if err != nil { 68 | log.Printf("failed to create request: %v", err) 69 | http.Error(w, "failed to create request", http.StatusInternalServerError) 70 | return 71 | } 72 | 73 | resp, err := http.DefaultClient.Do(pr) 74 | if err != nil { 75 | log.Printf("failed to make proxy request: %v", err) 76 | http.Error(w, "failed to make request", http.StatusInternalServerError) 77 | return 78 | } 79 | 80 | defer resp.Body.Close() 81 | 82 | io.Copy(w, resp.Body) 83 | } 84 | -------------------------------------------------------------------------------- /.github/workflows/build-deploy.yaml: -------------------------------------------------------------------------------- 1 | name: build-deploy 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | 8 | jobs: 9 | build: 10 | name: Build and Deploy 11 | runs-on: ubuntu-24.04 12 | environment: 13 | name: prod 14 | url: https://libproxy-db.org/ 15 | steps: 16 | - name: Checkout 17 | uses: actions/checkout@v6.0.1 18 | with: 19 | # Need fetch-depth 0, otherwise a shallow-clone will occur, and we 20 | # won't have history to use with buildinfo.sh. 21 | fetch-depth: 0 22 | 23 | - name: Install Hugo 24 | env: 25 | HUGO_VERSION: 0.151.0 26 | run: | 27 | curl \ 28 | --silent \ 29 | --location \ 30 | https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.tar.gz \ 31 | | tar \ 32 | --extract \ 33 | --gunzip \ 34 | --directory=/usr/local/bin \ 35 | hugo 36 | 37 | - name: Build site 38 | run: | 39 | ./buildinfo.sh > data/buildinfo.json 40 | hugo 41 | 42 | - name: Upload site artifact 43 | uses: actions/upload-artifact@v6.0.0 44 | with: 45 | name: libproxy-db 46 | path: public 47 | if-no-files-found: error 48 | 49 | - name: Set up SSH 50 | run: | 51 | mkdir -p ~/.ssh 52 | echo "${{ secrets.SSH_KNOWN_HOSTS }}" >> ~/.ssh/known_hosts 53 | 54 | chmod 700 ~/.ssh 55 | chmod 600 ~/.ssh/known_hosts 56 | 57 | - name: Tailscale 58 | uses: tailscale/github-action@v4.1.0 59 | with: 60 | oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} 61 | oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} 62 | tags: tag:ci 63 | ping: dev.cow-mirzam.ts.net 64 | 65 | - name: Deploy site 66 | env: 67 | SSH_AUTH_SOCK: /tmp/ssh_agent.sock 68 | run: | 69 | rsync \ 70 | --recursive \ 71 | --verbose \ 72 | --copy-links \ 73 | --delete \ 74 | public/ \ 75 | deploy-libproxy@dev:/srv/http/libproxy-db.org/ 76 | -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- 1 | +++ 2 | summary = """ 3 | Database of URLs from institutions using proxy servers, like 4 | [EZproxy](http://en.wikipedia.org/wiki/EZproxy). 5 | """ 6 | +++ 7 | 8 | Collection of proxy URLs from various libraries and institutions using 9 | software, like [EZproxy][ezproxy]. Can be used with the [Google Chrome 10 | Extension][chrome] or [Mozilla Firefox Extension][firefox]. 11 | 12 | [ezproxy]: https://en.wikipedia.org/wiki/EZproxy 13 | [chrome]: https://chromewebstore.google.com/detail/ezproxy-redirect/gfhnhcbpnnnlefhobdnmhenofhfnnfhi 14 | [firefox]: https://addons.mozilla.org/addon/firefox-ezproxy-redirect/ 15 | 16 | This database is also accessible in [JSON format][json]. The 17 | [code for this site][github-site] and code for the 18 | [browser extensions][github-browser] are available on GitHub. 19 | 20 | [json]: /proxies.json 21 | [github-site]: https://github.com/tom5760/ezproxy-db 22 | [github-browser]: https://github.com/tom5760/chrome-ezproxy 23 | 24 | ## Contributing 25 | 26 | To contribute your institution's proxy URL, or to update an existing entry, 27 | [submit an issue][issue], or you can 28 | [edit the database directly and create a pull request][pr]. 29 | Any questions or comments can be posted [on the discussions board][board]. 30 | 31 | [issue]: https://github.com/tom5760/ezproxy-db/issues/new/choose 32 | [pr]: https://github.com/tom5760/ezproxy-db/edit/main/static/proxies.json 33 | 34 | ### What happened to ezproxy-db.appspot.com? 35 | 36 | [I][me] decided to update and simplify the site. We didn't need a specialized 37 | app to manage a simple set of URLs. Instead, the database is just a single 38 | file, and this site generated statically from it. Keeping everything in a 39 | normal Git repository gets us a bunch of features for free, like tracking 40 | changes to the database, and lets me more easily add co-maintainers. 41 | 42 | The [previous version][appengine] is still running for now. Requests to the 43 | HTML index page are redirected here. Requests for the [proxies.json][json] 44 | file are proxied through, in order to support upgrading browser extensions to 45 | use the new URL. This will be supported at least through the end of 2022. 46 | 47 | Feel free to [discuss this on the discussion board][board]. 48 | 49 | [me]: https://github.com/tom5760/ 50 | [appengine]: https://github.com/tom5760/ezproxy-db/tree/appengine 51 | [board]: https://github.com/tom5760/ezproxy-db/discussions 52 | -------------------------------------------------------------------------------- /assets/favicon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/simple.css: -------------------------------------------------------------------------------- 1 | /* https://github.com/kevquirk/simple.css/blob/b0fbce132bed24ab427f4b18b9621e9b76cec5a5/simple.css */ 2 | 3 | /* Global variables. */ 4 | :root { 5 | /* Set sans-serif & mono fonts */ 6 | --sans-font: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, 7 | "Nimbus Sans L", Roboto, Noto, "Segoe UI", Arial, Helvetica, 8 | "Helvetica Neue", sans-serif; 9 | --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace; 10 | 11 | /* Default (light) theme */ 12 | --bg: #fff; 13 | --accent-bg: #f5f7ff; 14 | --text: #212121; 15 | --text-light: #585858; 16 | --border: #d8dae1; 17 | --accent: #0d47a1; 18 | --code: #d81b60; 19 | --preformatted: #444; 20 | --marked: #ffdd33; 21 | --disabled: #efefef; 22 | } 23 | 24 | /* Dark theme */ 25 | @media (prefers-color-scheme: dark) { 26 | :root { 27 | --bg: #212121; 28 | --accent-bg: #2b2b2b; 29 | --text: #dcdcdc; 30 | --text-light: #ababab; 31 | --border: #666; 32 | --accent: #ffb300; 33 | --code: #f06292; 34 | --preformatted: #ccc; 35 | --disabled: #111; 36 | } 37 | /* Add a bit of transparancy so light media isn't so glaring in dark mode */ 38 | img, 39 | video { 40 | opacity: 0.8; 41 | } 42 | } 43 | 44 | html { 45 | /* Set the font globally */ 46 | font-family: var(--sans-font); 47 | scroll-behavior: smooth; 48 | } 49 | 50 | /* Make the body a nice central block */ 51 | body { 52 | color: var(--text); 53 | background: var(--bg); 54 | font-size: 1.15rem; 55 | line-height: 1.5; 56 | display: grid; 57 | grid-template-columns: 58 | 1fr min(45rem, 90%) 1fr; 59 | margin: 0; 60 | } 61 | 62 | body>* { 63 | grid-column: 2; 64 | } 65 | 66 | /* Make the header bg full width, but the content inline with body */ 67 | body > header { 68 | background: var(--accent-bg); 69 | border-bottom: 1px solid var(--border); 70 | text-align: center; 71 | padding: 0 0.5rem 2rem 0.5rem; 72 | grid-column: 1 / -1; 73 | box-sizing: border-box; 74 | } 75 | 76 | body > header h1 { 77 | max-width: 1200px; 78 | margin: 1rem auto; 79 | } 80 | 81 | body > header p { 82 | max-width: 40rem; 83 | margin: 1rem auto; 84 | } 85 | 86 | /* Add a little padding to ensure spacing is correct between content and nav */ 87 | main { 88 | padding-top: 1.5rem; 89 | } 90 | 91 | body > footer { 92 | margin-top: 4rem; 93 | padding: 2rem 1rem 1.5rem 1rem; 94 | color: var(--text-light); 95 | font-size: 0.9rem; 96 | text-align: center; 97 | border-top: 1px solid var(--border); 98 | } 99 | 100 | /* Format headers */ 101 | h1 { 102 | font-size: 3rem; 103 | } 104 | 105 | h2 { 106 | font-size: 2.6rem; 107 | margin-top: 3rem; 108 | } 109 | 110 | h3 { 111 | font-size: 2rem; 112 | margin-top: 3rem; 113 | } 114 | 115 | h4 { 116 | font-size: 1.44rem; 117 | } 118 | 119 | h5 { 120 | font-size: 1.15rem; 121 | } 122 | 123 | h6 { 124 | font-size: 0.96rem; 125 | } 126 | 127 | /* Fix line height when title wraps */ 128 | h1, 129 | h2, 130 | h3 { 131 | line-height: 1.1; 132 | } 133 | 134 | /* Reduce header size on mobile */ 135 | @media only screen and (max-width: 720px) { 136 | h1 { 137 | font-size: 2.5rem; 138 | } 139 | 140 | h2 { 141 | font-size: 2.1rem; 142 | } 143 | 144 | h3 { 145 | font-size: 1.75rem; 146 | } 147 | 148 | h4 { 149 | font-size: 1.25rem; 150 | } 151 | } 152 | 153 | /* Format links & buttons */ 154 | a, 155 | a:visited { 156 | color: var(--accent); 157 | } 158 | 159 | a:hover { 160 | text-decoration: none; 161 | } 162 | 163 | button, 164 | [role="button"], 165 | input[type="submit"], 166 | input[type="reset"], 167 | input[type="button"] { 168 | border: none; 169 | border-radius: 5px; 170 | background: var(--accent); 171 | font-size: 1rem; 172 | color: var(--bg); 173 | padding: 0.7rem 0.9rem; 174 | margin: 0.5rem 0; 175 | } 176 | 177 | button[disabled], 178 | [role="button"][aria-disabled="true"], 179 | input[type="submit"][disabled], 180 | input[type="reset"][disabled], 181 | input[type="button"][disabled], 182 | input[type="checkbox"][disabled], 183 | input[type="radio"][disabled], 184 | select[disabled] { 185 | cursor: default; 186 | opacity: 0.5; 187 | cursor: not-allowed; 188 | } 189 | 190 | input:disabled, 191 | textarea:disabled, 192 | select:disabled { 193 | cursor: not-allowed; 194 | background-color: var(--disabled); 195 | } 196 | 197 | input[type="range"] { 198 | padding: 0; 199 | } 200 | 201 | /* Set the cursor to '?' while hovering over an abbreviation */ 202 | abbr { 203 | cursor: help; 204 | } 205 | 206 | button:focus, 207 | button:enabled:hover, 208 | [role="button"]:focus, 209 | [role="button"]:not([aria-disabled="true"]):hover, 210 | input[type="submit"]:focus, 211 | input[type="submit"]:enabled:hover, 212 | input[type="reset"]:focus, 213 | input[type="reset"]:enabled:hover, 214 | input[type="button"]:focus, 215 | input[type="button"]:enabled:hover { 216 | filter: brightness(1.4); 217 | cursor: pointer; 218 | } 219 | 220 | /* Format navigation */ 221 | nav { 222 | font-size: 1rem; 223 | line-height: 2; 224 | padding: 1rem 0 0 0; 225 | } 226 | 227 | nav a, 228 | nav a:visited { 229 | margin: 0 1rem 1rem 0; 230 | border: 1px solid var(--border); 231 | border-radius: 5px; 232 | color: var(--text); 233 | display: inline-block; 234 | padding: 0.1rem 1rem; 235 | text-decoration: none; 236 | } 237 | 238 | nav a:hover { 239 | color: var(--accent); 240 | border-color: var(--accent); 241 | } 242 | 243 | /* Reduce nav side on mobile */ 244 | @media only screen and (max-width: 750px) { 245 | nav a { 246 | border: none; 247 | padding: 0; 248 | color: var(--accent); 249 | text-decoration: underline; 250 | line-height: 1; 251 | } 252 | } 253 | 254 | /* Format the expanding box */ 255 | details { 256 | background: var(--accent-bg); 257 | border: 1px solid var(--border); 258 | border-radius: 5px; 259 | margin-bottom: 1rem; 260 | } 261 | 262 | summary { 263 | cursor: pointer; 264 | font-weight: bold; 265 | padding: 0.6rem 1rem; 266 | } 267 | 268 | details[open] { 269 | padding: 0.6rem 1rem 0.75rem 1rem; 270 | } 271 | 272 | details[open] summary + * { 273 | margin-top: 0; 274 | } 275 | 276 | details[open] summary { 277 | margin-bottom: 0.5rem; 278 | padding: 0; 279 | } 280 | 281 | details[open] > *:last-child { 282 | margin-bottom: 0; 283 | } 284 | 285 | /* Format tables */ 286 | table { 287 | border-collapse: collapse; 288 | width: 100%; 289 | margin: 1.5rem 0; 290 | } 291 | 292 | td, 293 | th { 294 | border: 1px solid var(--border); 295 | text-align: left; 296 | padding: 0.5rem; 297 | } 298 | 299 | th { 300 | background: var(--accent-bg); 301 | font-weight: bold; 302 | } 303 | 304 | tr:nth-child(even) { 305 | /* Set every other cell slightly darker. Improves readability. */ 306 | background: var(--accent-bg); 307 | } 308 | 309 | table caption { 310 | font-weight: bold; 311 | margin-bottom: 0.5rem; 312 | } 313 | 314 | /* Format forms */ 315 | textarea, 316 | select, 317 | input { 318 | font-size: inherit; 319 | font-family: inherit; 320 | padding: 0.5rem; 321 | margin-bottom: 0.5rem; 322 | color: var(--text); 323 | background: var(--bg); 324 | border: 1px solid var(--border); 325 | border-radius: 5px; 326 | box-shadow: none; 327 | box-sizing: border-box; 328 | width: 60%; 329 | -moz-appearance: none; 330 | -webkit-appearance: none; 331 | appearance: none; 332 | } 333 | 334 | /* Add arrow to drop-down */ 335 | select { 336 | background-image: linear-gradient(45deg, transparent 49%, var(--text) 51%), 337 | linear-gradient(135deg, var(--text) 51%, transparent 49%); 338 | background-position: calc(100% - 20px), calc(100% - 15px); 339 | background-size: 5px 5px, 5px 5px; 340 | background-repeat: no-repeat; 341 | } 342 | 343 | select[multiple] { 344 | background-image: none !important; 345 | } 346 | 347 | /* checkbox and radio button style */ 348 | input[type="checkbox"], 349 | input[type="radio"] { 350 | vertical-align: bottom; 351 | position: relative; 352 | } 353 | 354 | input[type="radio"] { 355 | border-radius: 100%; 356 | } 357 | 358 | input[type="checkbox"]:checked, 359 | input[type="radio"]:checked { 360 | background: var(--accent); 361 | } 362 | 363 | input[type="checkbox"]:checked::after { 364 | /* Creates a rectangle with colored right and bottom borders which is rotated to look like a check mark */ 365 | content: " "; 366 | width: 0.1em; 367 | height: 0.25em; 368 | border-radius: 0; 369 | position: absolute; 370 | top: 0.05em; 371 | left: 0.18em; 372 | background: transparent; 373 | border-right: solid var(--bg) 0.08em; 374 | border-bottom: solid var(--bg) 0.08em; 375 | font-size: 1.8em; 376 | transform: rotate(45deg); 377 | } 378 | input[type="radio"]:checked::after { 379 | /* creates a colored circle for the checked radio button */ 380 | content: " "; 381 | width: 0.25em; 382 | height: 0.25em; 383 | border-radius: 100%; 384 | position: absolute; 385 | top: 0.125em; 386 | background: var(--bg); 387 | left: 0.125em; 388 | font-size: 32px; 389 | } 390 | 391 | /* Make the textarea wider than other inputs */ 392 | textarea { 393 | width: 80%; 394 | } 395 | 396 | /* Makes input fields wider on smaller screens */ 397 | @media only screen and (max-width: 720px) { 398 | textarea, 399 | select, 400 | input { 401 | width: 100%; 402 | } 403 | } 404 | 405 | /* Ensures the checkbox and radio inputs do not have a set width like other input fields */ 406 | input[type="checkbox"], 407 | input[type="radio"] { 408 | width: auto; 409 | } 410 | 411 | /* do not show border around file selector button */ 412 | input[type="file"] { 413 | border: 0; 414 | } 415 | 416 | /* Misc body elements */ 417 | hr { 418 | color: var(--border); 419 | border-top: 1px; 420 | margin: 1rem auto; 421 | } 422 | 423 | mark { 424 | padding: 2px 5px; 425 | border-radius: 4px; 426 | background: var(--marked); 427 | } 428 | 429 | main img, 430 | main video { 431 | max-width: 100%; 432 | height: auto; 433 | border-radius: 5px; 434 | } 435 | 436 | figure { 437 | margin: 0; 438 | text-align: center; 439 | } 440 | 441 | figcaption { 442 | font-size: 0.9rem; 443 | color: var(--text-light); 444 | margin-bottom: 1rem; 445 | } 446 | 447 | blockquote { 448 | margin: 2rem 0 2rem 2rem; 449 | padding: 0.4rem 0.8rem; 450 | border-left: 0.35rem solid var(--accent); 451 | color: var(--text-light); 452 | font-style: italic; 453 | } 454 | 455 | cite { 456 | font-size: 0.9rem; 457 | color: var(--text-light); 458 | font-style: normal; 459 | } 460 | 461 | /* Use mono font for code elements */ 462 | code, 463 | pre, 464 | pre span, 465 | kbd, 466 | samp { 467 | font-size: 1.075rem; 468 | font-family: var(--mono-font); 469 | color: var(--code); 470 | } 471 | 472 | kbd { 473 | color: var(--preformatted); 474 | border: 1px solid var(--preformatted); 475 | border-bottom: 3px solid var(--preformatted); 476 | border-radius: 5px; 477 | padding: 0.1rem; 478 | } 479 | 480 | pre { 481 | padding: 1rem 1.4rem; 482 | max-width: 100%; 483 | overflow: auto; 484 | overflow-x: auto; 485 | color: var(--preformatted); 486 | background: var(--accent-bg); 487 | border: 1px solid var(--border); 488 | border-radius: 5px; 489 | } 490 | 491 | /* Fix embedded code within pre */ 492 | pre code { 493 | color: var(--preformatted); 494 | background: none; 495 | margin: 0; 496 | padding: 0; 497 | } 498 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-ShareAlike 4.0 International Public 58 | License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-ShareAlike 4.0 International Public License ("Public 63 | License"). To the extent this Public License may be interpreted as a 64 | contract, You are granted the Licensed Rights in consideration of Your 65 | acceptance of these terms and conditions, and the Licensor grants You 66 | such rights in consideration of benefits the Licensor receives from 67 | making the Licensed Material available under these terms and 68 | conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. BY-SA Compatible License means a license listed at 88 | creativecommons.org/compatiblelicenses, approved by Creative 89 | Commons as essentially the equivalent of this Public License. 90 | 91 | d. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | e. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | f. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | g. License Elements means the license attributes listed in the name 110 | of a Creative Commons Public License. The License Elements of this 111 | Public License are Attribution and ShareAlike. 112 | 113 | h. Licensed Material means the artistic or literary work, database, 114 | or other material to which the Licensor applied this Public 115 | License. 116 | 117 | i. Licensed Rights means the rights granted to You subject to the 118 | terms and conditions of this Public License, which are limited to 119 | all Copyright and Similar Rights that apply to Your use of the 120 | Licensed Material and that the Licensor has authority to license. 121 | 122 | j. Licensor means the individual(s) or entity(ies) granting rights 123 | under this Public License. 124 | 125 | k. Share means to provide material to the public by any means or 126 | process that requires permission under the Licensed Rights, such 127 | as reproduction, public display, public performance, distribution, 128 | dissemination, communication, or importation, and to make material 129 | available to the public including in ways that members of the 130 | public may access the material from a place and at a time 131 | individually chosen by them. 132 | 133 | l. Sui Generis Database Rights means rights other than copyright 134 | resulting from Directive 96/9/EC of the European Parliament and of 135 | the Council of 11 March 1996 on the legal protection of databases, 136 | as amended and/or succeeded, as well as other essentially 137 | equivalent rights anywhere in the world. 138 | 139 | m. You means the individual or entity exercising the Licensed Rights 140 | under this Public License. Your has a corresponding meaning. 141 | 142 | 143 | Section 2 -- Scope. 144 | 145 | a. License grant. 146 | 147 | 1. Subject to the terms and conditions of this Public License, 148 | the Licensor hereby grants You a worldwide, royalty-free, 149 | non-sublicensable, non-exclusive, irrevocable license to 150 | exercise the Licensed Rights in the Licensed Material to: 151 | 152 | a. reproduce and Share the Licensed Material, in whole or 153 | in part; and 154 | 155 | b. produce, reproduce, and Share Adapted Material. 156 | 157 | 2. Exceptions and Limitations. For the avoidance of doubt, where 158 | Exceptions and Limitations apply to Your use, this Public 159 | License does not apply, and You do not need to comply with 160 | its terms and conditions. 161 | 162 | 3. Term. The term of this Public License is specified in Section 163 | 6(a). 164 | 165 | 4. Media and formats; technical modifications allowed. The 166 | Licensor authorizes You to exercise the Licensed Rights in 167 | all media and formats whether now known or hereafter created, 168 | and to make technical modifications necessary to do so. The 169 | Licensor waives and/or agrees not to assert any right or 170 | authority to forbid You from making technical modifications 171 | necessary to exercise the Licensed Rights, including 172 | technical modifications necessary to circumvent Effective 173 | Technological Measures. For purposes of this Public License, 174 | simply making modifications authorized by this Section 2(a) 175 | (4) never produces Adapted Material. 176 | 177 | 5. Downstream recipients. 178 | 179 | a. Offer from the Licensor -- Licensed Material. Every 180 | recipient of the Licensed Material automatically 181 | receives an offer from the Licensor to exercise the 182 | Licensed Rights under the terms and conditions of this 183 | Public License. 184 | 185 | b. Additional offer from the Licensor -- Adapted Material. 186 | Every recipient of Adapted Material from You 187 | automatically receives an offer from the Licensor to 188 | exercise the Licensed Rights in the Adapted Material 189 | under the conditions of the Adapter's License You apply. 190 | 191 | c. No downstream restrictions. You may not offer or impose 192 | any additional or different terms or conditions on, or 193 | apply any Effective Technological Measures to, the 194 | Licensed Material if doing so restricts exercise of the 195 | Licensed Rights by any recipient of the Licensed 196 | Material. 197 | 198 | 6. No endorsement. Nothing in this Public License constitutes or 199 | may be construed as permission to assert or imply that You 200 | are, or that Your use of the Licensed Material is, connected 201 | with, or sponsored, endorsed, or granted official status by, 202 | the Licensor or others designated to receive attribution as 203 | provided in Section 3(a)(1)(A)(i). 204 | 205 | b. Other rights. 206 | 207 | 1. Moral rights, such as the right of integrity, are not 208 | licensed under this Public License, nor are publicity, 209 | privacy, and/or other similar personality rights; however, to 210 | the extent possible, the Licensor waives and/or agrees not to 211 | assert any such rights held by the Licensor to the limited 212 | extent necessary to allow You to exercise the Licensed 213 | Rights, but not otherwise. 214 | 215 | 2. Patent and trademark rights are not licensed under this 216 | Public License. 217 | 218 | 3. To the extent possible, the Licensor waives any right to 219 | collect royalties from You for the exercise of the Licensed 220 | Rights, whether directly or through a collecting society 221 | under any voluntary or waivable statutory or compulsory 222 | licensing scheme. In all other cases the Licensor expressly 223 | reserves any right to collect such royalties. 224 | 225 | 226 | Section 3 -- License Conditions. 227 | 228 | Your exercise of the Licensed Rights is expressly made subject to the 229 | following conditions. 230 | 231 | a. Attribution. 232 | 233 | 1. If You Share the Licensed Material (including in modified 234 | form), You must: 235 | 236 | a. retain the following if it is supplied by the Licensor 237 | with the Licensed Material: 238 | 239 | i. identification of the creator(s) of the Licensed 240 | Material and any others designated to receive 241 | attribution, in any reasonable manner requested by 242 | the Licensor (including by pseudonym if 243 | designated); 244 | 245 | ii. a copyright notice; 246 | 247 | iii. a notice that refers to this Public License; 248 | 249 | iv. a notice that refers to the disclaimer of 250 | warranties; 251 | 252 | v. a URI or hyperlink to the Licensed Material to the 253 | extent reasonably practicable; 254 | 255 | b. indicate if You modified the Licensed Material and 256 | retain an indication of any previous modifications; and 257 | 258 | c. indicate the Licensed Material is licensed under this 259 | Public License, and include the text of, or the URI or 260 | hyperlink to, this Public License. 261 | 262 | 2. You may satisfy the conditions in Section 3(a)(1) in any 263 | reasonable manner based on the medium, means, and context in 264 | which You Share the Licensed Material. For example, it may be 265 | reasonable to satisfy the conditions by providing a URI or 266 | hyperlink to a resource that includes the required 267 | information. 268 | 269 | 3. If requested by the Licensor, You must remove any of the 270 | information required by Section 3(a)(1)(A) to the extent 271 | reasonably practicable. 272 | 273 | b. ShareAlike. 274 | 275 | In addition to the conditions in Section 3(a), if You Share 276 | Adapted Material You produce, the following conditions also apply. 277 | 278 | 1. The Adapter's License You apply must be a Creative Commons 279 | license with the same License Elements, this version or 280 | later, or a BY-SA Compatible License. 281 | 282 | 2. You must include the text of, or the URI or hyperlink to, the 283 | Adapter's License You apply. You may satisfy this condition 284 | in any reasonable manner based on the medium, means, and 285 | context in which You Share Adapted Material. 286 | 287 | 3. You may not offer or impose any additional or different terms 288 | or conditions on, or apply any Effective Technological 289 | Measures to, Adapted Material that restrict exercise of the 290 | rights granted under the Adapter's License You apply. 291 | 292 | 293 | Section 4 -- Sui Generis Database Rights. 294 | 295 | Where the Licensed Rights include Sui Generis Database Rights that 296 | apply to Your use of the Licensed Material: 297 | 298 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 299 | to extract, reuse, reproduce, and Share all or a substantial 300 | portion of the contents of the database; 301 | 302 | b. if You include all or a substantial portion of the database 303 | contents in a database in which You have Sui Generis Database 304 | Rights, then the database in which You have Sui Generis Database 305 | Rights (but not its individual contents) is Adapted Material, 306 | including for purposes of Section 3(b); and 307 | 308 | c. You must comply with the conditions in Section 3(a) if You Share 309 | all or a substantial portion of the contents of the database. 310 | 311 | For the avoidance of doubt, this Section 4 supplements and does not 312 | replace Your obligations under this Public License where the Licensed 313 | Rights include other Copyright and Similar Rights. 314 | 315 | 316 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 317 | 318 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 319 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 320 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 321 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 322 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 323 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 324 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 325 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 326 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 327 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 328 | 329 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 330 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 331 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 332 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 333 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 334 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 335 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 336 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 337 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 338 | 339 | c. The disclaimer of warranties and limitation of liability provided 340 | above shall be interpreted in a manner that, to the extent 341 | possible, most closely approximates an absolute disclaimer and 342 | waiver of all liability. 343 | 344 | 345 | Section 6 -- Term and Termination. 346 | 347 | a. This Public License applies for the term of the Copyright and 348 | Similar Rights licensed here. However, if You fail to comply with 349 | this Public License, then Your rights under this Public License 350 | terminate automatically. 351 | 352 | b. Where Your right to use the Licensed Material has terminated under 353 | Section 6(a), it reinstates: 354 | 355 | 1. automatically as of the date the violation is cured, provided 356 | it is cured within 30 days of Your discovery of the 357 | violation; or 358 | 359 | 2. upon express reinstatement by the Licensor. 360 | 361 | For the avoidance of doubt, this Section 6(b) does not affect any 362 | right the Licensor may have to seek remedies for Your violations 363 | of this Public License. 364 | 365 | c. For the avoidance of doubt, the Licensor may also offer the 366 | Licensed Material under separate terms or conditions or stop 367 | distributing the Licensed Material at any time; however, doing so 368 | will not terminate this Public License. 369 | 370 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 371 | License. 372 | 373 | 374 | Section 7 -- Other Terms and Conditions. 375 | 376 | a. The Licensor shall not be bound by any additional or different 377 | terms or conditions communicated by You unless expressly agreed. 378 | 379 | b. Any arrangements, understandings, or agreements regarding the 380 | Licensed Material not stated herein are separate from and 381 | independent of the terms and conditions of this Public License. 382 | 383 | 384 | Section 8 -- Interpretation. 385 | 386 | a. For the avoidance of doubt, this Public License does not, and 387 | shall not be interpreted to, reduce, limit, restrict, or impose 388 | conditions on any use of the Licensed Material that could lawfully 389 | be made without permission under this Public License. 390 | 391 | b. To the extent possible, if any provision of this Public License is 392 | deemed unenforceable, it shall be automatically reformed to the 393 | minimum extent necessary to make it enforceable. If the provision 394 | cannot be reformed, it shall be severed from this Public License 395 | without affecting the enforceability of the remaining terms and 396 | conditions. 397 | 398 | c. No term or condition of this Public License will be waived and no 399 | failure to comply consented to unless expressly agreed to by the 400 | Licensor. 401 | 402 | d. Nothing in this Public License constitutes or may be interpreted 403 | as a limitation upon, or waiver of, any privileges and immunities 404 | that apply to the Licensor or You, including from the legal 405 | processes of any jurisdiction or authority. 406 | 407 | 408 | ======================================================================= 409 | 410 | Creative Commons is not a party to its public licenses. 411 | Notwithstanding, Creative Commons may elect to apply one of its public 412 | licenses to material it publishes and in those instances will be 413 | considered the “Licensor.” The text of the Creative Commons public 414 | licenses is dedicated to the public domain under the CC0 Public Domain 415 | Dedication. Except for the limited purpose of indicating that material 416 | is shared under a Creative Commons public license or as otherwise 417 | permitted by the Creative Commons policies published at 418 | creativecommons.org/policies, Creative Commons does not authorize the 419 | use of the trademark "Creative Commons" or any other trademark or logo 420 | of Creative Commons without its prior written consent including, 421 | without limitation, in connection with any unauthorized modifications 422 | to any of its public licenses or any other arrangements, 423 | understandings, or agreements concerning use of licensed material. For 424 | the avoidance of doubt, this paragraph does not form part of the public 425 | licenses. 426 | 427 | Creative Commons may be contacted at creativecommons.org. 428 | --------------------------------------------------------------------------------